我有一个vue component
打印出一个单选按钮列表。我在watch
上有internalValue
,它将所选值发送到root
我正在尝试使用名为console.log
的{{1}}在click event
上发送method
,但它无效。此外,我没有收到任何错误或警告。
加载组件
doSomething
使用组件
Vue.component('topic', require('./components/Topicselect.vue'));
初始化Vue
<div class="form-group" id="topic">
<topic v-model="selectedTopic"></topic>
</div>
组件
new Vue({
el: '#topic',
data: {
selectedTopic: null
}
});