上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
摘要: 组件count <template> <div class="count"> <h2 > 当前求和为 :{{$store.state.sum}}</h2> <select v-model.number="n"> <option :value="1">1 </option> <option :valu 阅读全文
posted @ 2022-11-15 16:14 小白字太白 阅读(50) 评论(0) 推荐(0) 编辑
摘要: vuex的对应版本 vue2对应vuex3 所以安装的时候 npm i insatll vuex@3 vue3 对应vuex4 所以安装的时候 npm i insatll vuex 安装完成之后 在main js中引入 //引入vuex import Vuex from 'vuex'; //使用插件 阅读全文
posted @ 2022-11-15 15:30 小白字太白 阅读(37) 评论(0) 推荐(0) 编辑
摘要: <template> <div id="app" class="container"> <Category title="美食" > <template scope="{games}"> <ul> <li v-for="(g, index) in games" :key="index">{{g}}< 阅读全文
posted @ 2022-11-15 10:24 小白字太白 阅读(14) 评论(0) 推荐(0) 编辑
摘要: <template> <div id="app" class="container"> <Category title="美食" :listData='foods'> <img src="https://s3.ax1x.com/2021/01/16/srJ1q0.jpg" alt=""> </Cat 阅读全文
posted @ 2022-11-14 17:08 小白字太白 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://animate.style/ 按照里面的方法进行编辑 阅读全文
posted @ 2022-11-14 11:16 小白字太白 阅读(188) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="school"> <button @click="isShow=!isShow" >显示/隐藏</button> <transition :appear="true"> <h2 v-show="isShow"> 你好啊</h2> </transition 阅读全文
posted @ 2022-11-14 10:50 小白字太白 阅读(19) 评论(0) 推荐(0) 编辑
摘要: app <template> <div id="app"> <div class="todo-container"> <div class="todo-wrap"> <MyHeader :addTodo="addTodo"></MyHeader> <MyList :todos="todos" :ch 阅读全文
posted @ 2022-11-10 16:31 小白字太白 阅读(9) 评论(0) 推荐(0) 编辑
摘要: footer <template> <div class="todo-footer" > <label> <input type="checkbox" /> </label> <span> <span>已完成{{doneTotal}}</span> / 全部{{todos.length}} </sp 阅读全文
posted @ 2022-11-10 15:49 小白字太白 阅读(12) 评论(0) 推荐(0) 编辑
摘要: app <template> <div id="app"> <div class="todo-container"> <div class="todo-wrap"> <MyHeader :addTodo="addTodo"></MyHeader> <MyList :todos="todos" :ch 阅读全文
posted @ 2022-11-10 15:19 小白字太白 阅读(39) 评论(0) 推荐(0) 编辑
摘要: app中 <template> <div id="app"> <div class="todo-container"> <div class="todo-wrap"> <MyHeader :addTodo="addTodo"></MyHeader> <MyList :todos="todos" :c 阅读全文
posted @ 2022-11-10 14:56 小白字太白 阅读(13) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页