Vue——组件化开发DEMO
生活随笔
收集整理的這篇文章主要介紹了
Vue——组件化开发DEMO
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
<template><div><h2>{{messagea}}</h2><button @click="btnClicka">按鈕</button><h2>{{namea}}</h2></div>
</template><script>export default {name: "DEMO",data(){return {messagea: "hello Vue DEMO",namea: "STZG DEMO"};},methods:{btnClicka(){}}}
</script><style scoped>button{color: greenyellow;}
</style>
?
總結(jié)
以上是生活随笔為你收集整理的Vue——组件化开发DEMO的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Vue——Windows 10下Vue项
- 下一篇: Spring Boot——基于OkHTT