Vue js 2方法不适用于点击事件

时间:2017-03-14 22:31:08

标签: components vue.js vuejs2

我有一个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
    }
});

0 个答案:

没有答案