上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 97 下一页
摘要: 1、当state中的数据需要加工使用时,可以使用getters加工 2、在sindex.js中追加getters配置,注意别忘记创建和暴露 //准备state对象--保存具体数据 const state = { sum:0 } // 对state中的数据进行加工处理 const getters = 阅读全文
posted @ 2025-01-07 19:36 市丸银 阅读(59) 评论(0) 推荐(0)
摘要: 1、index.js import Vue from "vue"; import Vuex from "vuex" // 使用Vuex Vue.use(Vuex) // 准备actions对象--响应组件中的动作 const actions = { addOdd(context, value){ i 阅读全文
posted @ 2025-01-07 18:51 市丸银 阅读(5) 评论(0) 推荐(0)
摘要: 一、下载vuex 注意版本 vue2对应 npm i vuex@3 vue3对应 npm i vuex@4 二、创建文件 src/store/index.html import Vue from "vue"; import Vuex from "vuex" // 使用Vuex Vue.use(Vue 阅读全文
posted @ 2025-01-07 18:05 市丸银 阅读(9) 评论(0) 推荐(0)
摘要: 一、作用 父组件可以向子组件指定位置插入html结构,也是一种通信方式,适用于 父组件=>子组件 二、分类 默认插槽、具名插槽(有具体名字的插槽)、作用域插槽 三、使用方式 1、默认插槽 父组件 <Category title="美食" > <ul> <li v-for="data,index in 阅读全文
posted @ 2025-01-06 22:31 市丸银 阅读(49) 评论(0) 推荐(0)
摘要: 一、配置文件 vue.config.js devServer: { proxy: { '/api': { // 获取数据的接口 target: 'http://127.0.0.1:8000', // 特别重要 pathRewrite:{'^/api':''}, ws: true, changeOri 阅读全文
posted @ 2025-01-06 18:39 市丸银 阅读(118) 评论(0) 推荐(0)
摘要: settings文件 STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static'), # 添加此项 ] 阅读全文
posted @ 2025-01-06 10:15 市丸银 阅读(16) 评论(0) 推荐(0)
摘要: 一、修改配置文件 通过 vue.config.js 中的 devServer.proxy 配置代理 // 配置代理 proxy 指向后端API服务器 devServer: { proxy: 'http://127.0.0.1:8000' } 二、使用axios 1、下载 npm install ax 阅读全文
posted @ 2025-01-06 00:09 市丸银 阅读(324) 评论(0) 推荐(0)
摘要: 一、作用 在插入、更新或移除DOM元素时 在合适的时候给元素提那家样式类名 二、写法 1、准备好样式 元素进入的样式: a、v-enter:进入起点 b、v-enter-avctive:进入过程中 c、v-enter-to:进入终点 元素远离样式: a、v-leave:离开的起点 b、v-leave 阅读全文
posted @ 2025-01-05 21:43 市丸银 阅读(13) 评论(0) 推荐(0)
摘要: 一、watch 作用:对数据进行监听,数据发生变化时执行 二、nextTick 作用:数据修改后,DOM更新完毕后,执行里面的内容,可以和swiper插件配合使用 三、案例 watch:{ // 1、监听数据发生变化, bannerList存储 图片数据 bannerList:{ handler(n 阅读全文
posted @ 2025-01-05 19:54 市丸银 阅读(10) 评论(0) 推荐(0)
摘要: 一、作用 任意组件间通讯 二、使用 1、安装pubsub npm install pubsub-js 2、引入 import pubsub from 'pubsub-js' 3、接受数据(订阅) a、引入 import pubsub from 'pubsub-js' b、回调方法 methods: 阅读全文
posted @ 2025-01-05 17:31 市丸银 阅读(12) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 97 下一页