Vue组件可以访问道具的原始表达式吗?

时间:2018-02-01 02:57:53

标签: vue.js

props数组允许Vue组件声明它接收的属性。有没有办法确定原始属性表达式是什么?

例如,对于此Vue组件:

Vue.component( 'my-component', Vue.extend( {
    template: '<output>The answer is {{value}} but what is the question?</output>',
    props: [ 'value' ]
} ));

new Vue( {
    el: '#app',
    data() {
        return {
            theQuestion: '42'
      }
    }
} );

和这个HTML:

<div id="app">  
    <my-component v-model="theQuestion"></my-component>
</div>

Vue组件如何访问theQuestion属性中包含的文本字符串v-model?在这里小提琴:https://jsfiddle.net/oznz8a4z/

0 个答案:

没有答案