123456789101112131415 |
- define([
- 'vue',
- 'text!wap/first/zsff/components/question_guide/index.html',
- 'css!wap/first/zsff/components/question_guide/index.css'
- ], function(Vue, html) {
- 'use strict';
- Vue.component('question-guide', {
- template: html,
- methods: {
- onRecord: function () {
- this.$emit('record-guide');
- }
- }
- });
- });
|