标签:Vue
<template><script>
export default {
name: ‘HelloWorld‘,
data () {
return {
ss: [],
ac:‘‘
}
},
methods:{
bb:function() {
this.ss.push(this.ac)
this.ac=‘ ‘
}
}
}
</script>
标签:Vue
原文地址:http://blog.51cto.com/13787496/2125319