logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vuex - Module - 访问命名空间里的state、actions、mutations、getters的方式

1. 模块(module)说明注: 本小节内容来源官网由于使用单一状态树,应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时,store 对象就有可能变得相当臃肿。为了解决以上问题,Vuex 允许我们将 store 分割成模块(module)。每个模块拥有自己的 state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割:const modu

Vue的混入和继承

混入将多个vue文件内重复使用的功能代码,提取成单个js文件,在需要使用的地方进行调用即可。在一个js文件内定义一个对象, 在对象中可以写 vue文件内的 data 、methods、components等所有<script>中可以定义的代码。混入注意(重名情况)组件中的 data变量名 和 混入中的 data变量 名, 发生重名时, 以组件为准;组件中的 methods,comput

#vue.js#html#javascript
vite+Vue3技术栈项目- 解决跨域配置代理

vite+Vue3技术栈项目- 解决跨域配置代理1. 跨域问题引入2. 解决跨域编码:3. 更改后端请求:4. 编码测试OK1. 跨域问题引入我的前端项目启动,是 http://127.0.0.1:3000需要访问的后端接口是:http://localhost:9693/httphwm/getList如果直接请求,会出现跨域问题,如下:2. 解决跨域编码:在项目根目录下,创建文件 vite.con

#前端#vue.js#typescript
关于!!+Cookies.get(‘sidebarStatus‘)讲解

文章目录问题引入作用及文件位置作用文件位置!!+Cookies.get('sidebarStatus')详细详解总结问题引入在vue-element-admin框架中, vuex的app子模块中有这段代码:opened: Cookies.get('sidebarStatus') ? !!+Cookies.get('sidebarStatus') : true,其中的 !!+Cookies.get(

Element-Plus select选择器-下拉组件错位bug(有高度滚动时)

element-ui、element-plus select选择器,下拉菜单滚动时错位

文章图片
#前端#elementui
路由跳转错误:Uncaught (in promise) Error: Redirected when going from “...“ to “...“ via a navigation guard

vue路由跳转错误:Uncaught (in promise) Error: Redirected when going from “/layout/home” to “/layout/user” via a navigation guard.Uncaught (in promise) Error: Redirected when going from “…” to “…” via a navig

#javascript
Pinia的使用(在Vue3和TypeScript的环境下)

Pinia官网: https://pinia.vuejs.org/Pinia的使用(在Vue3和TypeScript的环境下1. 创建项目1.1 脚手架搭建1.2 安装pinia2. Pinia - Store2.1创建Store2.2 Store详讲2.3 使用store中的状态2.3.1 简单访问store状态2.3.2 访问及简单修改store(标准操作)2.4 store - $patch

#javascript#前端#typescript +1
路由跳转错误:Uncaught (in promise) Error: Redirected when going from “...“ to “...“ via a navigation guard

vue路由跳转错误:Uncaught (in promise) Error: Redirected when going from “/layout/home” to “/layout/user” via a navigation guard.Uncaught (in promise) Error: Redirected when going from “…” to “…” via a navig

#javascript
到底了