随笔分类 -  Vue.js前端开发实践

摘要:#外联绑定 1.对象绑定: v-bind:class="classobject" 2数组绑定: v-bind:class="[class1,class2]" #内联绑定 <p v-bind:style="fontWeight:weight,color:color"> #非内联 <p v-bind:s 阅读全文
posted @ 2023-04-10 15:35 仟浊Cc 阅读(70) 评论(0) 推荐(0)
摘要:<div id="box"><p>{{content}}</p></div> #挂载元素 <script type="text/javascript"> var vm = new Vue({#创建实例 el:'#box', #选择器(只能选择一个) data:{ content:"常应常清静" #自 阅读全文
posted @ 2023-02-14 09:48 仟浊Cc 阅读(35) 评论(0) 推荐(0)