摘要:
下载 npm i node-sass@4.14.1 -S npm i sass-loader@8.x -S 或 npm i node-sass@4.14.1 sass-loader@8.x -S 使用 lang='scss' 关闭语法校验啥的。。。 阅读全文
2022年9月15日
2022年9月14日
摘要:
需要用户登录的页面配置 meta:{requiresAuth:true}, VueRouter.beforeEach((to, from, next) => { //获取登录状态 let isLogin = localStorage.getItem('isLogin') //判断要去往的页面有没有设 阅读全文
摘要:
Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property 阅读全文
2022年9月12日
摘要:
下载 npm i better-scroll -S 引入配置 import BetterScroll from 'better-scroll' let bs = new BetterScroll('.wrapper', { movable: true, zoom: true }) import BS 阅读全文
摘要:
安装 npm i vue-awesome-swiper@3.1.3 -S 2.使用 <template> <div class="recommendPage"> <swiper :options="swiperOption" ref="mySwiper"> <swiper-slide>I'm Sli 阅读全文
2022年9月11日
摘要:
1、服务端生命周期 1. nuxtServerInit(store, context){} 服务端初始化 动态token 读到设置 参数1 :vuex上下文 参数2 :nuxt上下文 在store中写时 2. middleware:'auth' 中间件 导航守卫 判断是否存在 全局:在nuxt.co 阅读全文
摘要:
下载 npx create-nuxt-app <项目名> 选项 Project name: (demo2)//项目名 Programming language: (Use arrow keys)//语言 > JavaScript TypeScript Package manager: (Use ar 阅读全文
2022年9月9日
摘要:
删除node_modules,重新npm i 阅读全文
摘要:
问题记录 解决方法 改babel.config.js配置 根据: https://zhuanlan.zhihu.com/p/337075666 npm i @babel/plugin-transform-runtime -D npm i @babel/runtime-corejs3 { "prese 阅读全文
摘要:
解决方法: 配置图片url-loader,在webpack.config.js中添加加入esModule:false即可,其作用是启用CommonJS模块语法 我的是在babel.config.js中 module.exports = { presets: [ '@vue/app', //解决图片不 阅读全文