2021年12月16日

Vue笔记2

摘要: <!-- 计算属性 computed https://www.runoob.com/vue2/vue-computed.html --> <div id="app"> <p>原始字符串: {{ message }}</p> <!-- 获取计算后的属性(用于复杂逻辑) --> <p>computed计 阅读全文

posted @ 2021-12-16 19:00 hi-gdl 阅读(23) 评论(0) 推荐(0) 编辑

Vue笔记1.2

摘要: <!-- v-bind:class v-bind:style 样式绑定参考 https://www.runoob.com/vue2/vue-class-style.html --> <! > <div id="app"> <button v-on:click="counter += 1">增加 1< 阅读全文

posted @ 2021-12-16 18:58 hi-gdl 阅读(24) 评论(0) 推荐(0) 编辑

Vue笔记1.1 : 开始

摘要: <!-- Vue.js demo https://www.runoob.com/vue2/vue-tutorial.html --> <div id="vue_det"> <p>{{ message }}</p> <p>{{details()}}</p> <!--双大括号支持js计算 --> <p> 阅读全文

posted @ 2021-12-16 18:57 hi-gdl 阅读(15) 评论(0) 推荐(0) 编辑

导航