vue入门教程 简单实现一个事件绑定

【vue入门教程 简单实现一个事件绑定】vue入门教程 简单实现一个事件绑定

> // vue中作为组件,data需要写成一个函数return一个对象的形式 // 其中的值可以用this来访问到 export default { name: 'App', data(){ return{ value:'', meassge:'' } }, // methods用于书写,定义的方法 methods: { handelBtn() { this.meassge = this.value; } }, } > #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; }

    推荐阅读