摘要: 组件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) 编辑