随笔分类 - vue
摘要:安装 cnpm install axios@0.27.2 -s 在main.js配置 // The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in
阅读全文
摘要:是什么 组件间共享数据 登录状态、用户头像、地理位置 商品收藏、购物车中的物品 vuex一般创建文件夹store 安装vuex cnpm install vuex@3.6.2 --save 创建store文件夹下面的index.js文件 import Vuex from 'vuex' import
阅读全文
摘要:1.通过代码跳转路由 route children方式可以配合router-view显示路由嵌套 其他的情况都是跳转一个新的界面 <template> <div> <h1>Index</h1> <button @click="aboutClick()">关于界面push</button> <butt
阅读全文
摘要:第一个vue程序{ <body> <div id="app"> {{message}} </div> <script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script> <script> var kcl = new Vue({
阅读全文