vue-study
vue学习笔记
✻只影为谁去
渺万里层云,千山暮雪,只影为谁去。
展开
-
vue_axios二次封装,api解耦
vue_axios二次封装,api解耦原创 2023-02-20 21:25:29 · 156 阅读 · 0 评论 -
css_background在vue中使用@写法引入图片
css_background在vue中使用@写法引入图片原创 2023-02-03 22:05:01 · 1370 阅读 · 0 评论 -
vue-绑定class样式
vue_绑定class样式笔记原创 2023-01-30 18:54:42 · 67 阅读 · 0 评论 -
学习笔记(一)
配置路由元信息(meta)控制组件显示const router = new VueRouter({ routes: [ { name:'home', path:'/', component:Home, meta:{show:true}, } ]})使用<Foot v-show="$route.meta.show"/>params传参.原创 2022-03-31 11:15:44 · 83 阅读 · 0 评论 -
关闭eslint校验
vue项目运行浏览器自动打开,配置package.json文件"scripts": { "serve": "vue-cli-service serve --open",//添加--open "build": "vue-cli-service build", "lint": "vue-cli-service lint" },eslint校验关闭,配置vue.config.js文件module.exports = { lintOnSave:false, //关闭语法检查原创 2022-03-27 09:57:51 · 1045 阅读 · 0 评论 -
vue3的watch
笔记原创 2022-03-24 20:17:03 · 582 阅读 · 0 评论 -
vue3中的setup与计算属性
笔记学习原创 2022-03-24 17:29:56 · 1269 阅读 · 0 评论 -
vue3笔记(模拟响应式)
学习笔记原创 2022-03-24 10:43:16 · 301 阅读 · 0 评论 -
vue3初始化
学习笔记,vue3安装创建项目原创 2022-03-23 16:20:38 · 1137 阅读 · 0 评论 -
element ui
引入全部cnpm i element-ui -S//-S现在不用也可,npm会写入依赖中修改main.js文件import ElementUI from 'element-ui';//引入element ui组件库import 'element-ui/lib/theme-chalk/index.css';//引入element ui组件库全部样式Vue.use(ElementUI);按需引入npm install babel-plugin-component -D//-D.原创 2022-03-23 13:03:06 · 556 阅读 · 0 评论 -
vue-router
安装 cnpm i vue-router@3 //vue2安装vue-router@3 配置main.js文件 import VueRouter from 'vue-router' import router from './router' Vue.use(VueRouter) new Vue({ router }).$mount('#app')src/router/index.js文件import VueRouter from 'vue-router'import原创 2022-03-22 22:25:35 · 287 阅读 · 0 评论 -
vuex模块化
src/store/index.jsconst aboutCount={ namespaced:'count', actions:{}, mutations:{}, state:{}, getters:{}, }const aboutPerson={ namespaced:'person', actions:{}, mutations:{}, state:{}, getters:{}, }export de原创 2022-03-21 20:45:16 · 71 阅读 · 0 评论 -
vuex代码简化
这四种方法是简化vuex中代码import {mapState,mapGetters,mapActions,mapMutations} from 'vuex'//引入computed:{...mapState({:''})or...mapState(['']),//都有两种写法...mapGetters({:''})}//这两种是获取this.$store.state和this.$store.state.getters上面数据简化methods:{...mapActions({:''}),原创 2022-03-21 19:28:47 · 372 阅读 · 0 评论 -
vuex基本使用
安装配置 npm install vuex@3 //vue2用vuex3,vue3用vuex4版本配置src/main.js文件 import store from './store'//引入路径默认找index.js文件 new Vue({ store })配置src/store/index.js文件 import Vue from 'vue' import Vuex from 'vuex'//import引入的文件先于其他语句执行 Vue.use(Vuex) .原创 2022-03-21 14:36:49 · 78 阅读 · 0 评论 -
vue参数传递方法
全局事件总线main.jsnew Vue({ render: h => h(App), //解析模板 beforeCreate(){ Vue.prototype.$bus = this //安装全局事件总线 }}).$mount('#app')//组件实例对象的原型对象的原型对象指向vue原型对象//VueComponent.prototype.__pro__===Vue.prototype$bus绑定自定义事件methods:{ chan.原创 2022-03-20 15:07:27 · 1555 阅读 · 0 评论 -
vue代理服务器配置
vue.config.js文件module.exports = { // devServer: { // proxy: 'http://localhost:7001' //服务器地址 // }//配置一个代理,访问一个服务器, devServer: { proxy: { '/api': {//请求代理服务器前缀 target: '<url>',//url是服务器地址,代理服务器去.原创 2022-03-20 14:23:03 · 1408 阅读 · 0 评论