Vue

Vue事件处理

2018-08-17  本文已影响0人  ChangLau

Vue 事件处理

<button @click="num++">ADD{{num}}</button>
<button @click="popWindow">PopWindow</button>
methods: {
    popWindow() {
        this.showPop = true;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读