nuxt
从此花海一片
这个作者很懒,什么都没留下…
展开
-
nuxt 项目引入插件在IE报语法错误
pc项目在其他浏览器包括edge都正常显示,但在IE浏览器报语法错误,页面的点击事件都无正常使用。上网搜索资料得知,可能是因为插件中使用了ES6的语法,导致IE无法解析,阻塞了页面逻辑的运行。最后的解决方案:(此项目采用的是vue的nuxt)修改nuxt.config,增加:build: { transpile: [ ‘vue-persist’ // 出错插件的名称 ], }参考地址:https://blog.csdn.net/haochangdi123/art原创 2021-02-22 11:28:09 · 1117 阅读 · 0 评论 -
nuxt框架项目中报Failed to resolve filter:XXX
虽然报Failed to resolve filter:XXX,但可以正常使用,警告提示界面nuxt.config.js中的配置解决方案:将filter的渲染方式改为服务器端渲染自己上网查找总结的原因:过滤器要先执行,然后再绑定在Vue实例上,可能Vue实例在服务器端已经存在,所以报Failed to resolve filter:XXX...原创 2020-08-10 16:15:25 · 893 阅读 · 0 评论 -
状态store的写入和读取
1 vue中store的写入和读取1.1 创建store文件夹1.2 写js文件const state = { // this.$store.state. username: null, token: null, brandArr: [], // 记录访问路径 shopStatus: '0' } // 获取数据 对外暴露 // mautation...原创 2020-03-10 12:18:17 · 3146 阅读 · 0 评论