logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

JSON的特点和优势

检测变化的注意事项受现代JavaScript的限制(以及 废弃Object.observe), Vue不能检测到对象属性的添加或删除。 由于vue会在初始化实例时对属性执行getter/setter转化过程,所以属性必须在data对象上存在才能让vue转换它,这样才能让它是响应的。例如:var vm = new Vue({data:{num:1}...

vue中用装饰器报错:Parsing error: Decorators cannot be used to decorate object literal properties

报错信息:error: Parsing error: Decorators cannot be used to decorate object literal properties解决办法:在.eslintrc.js文件加入legacyDecorators: true就可以支持装饰器的写法了parserOptions: {// 解析器parser: 'babel-eslint',ecmaFeatu

vue项目依赖升级报错处理

1.依赖升级后遇到的问题由autoprefixer版本引起的 warning:Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block, not to next rules解决方法:// 将样式中像下面的写法/* autoprefixer: off */.

vue-i18n的9以上的版本中@被用作特殊字符处理,直接用会报错

国际化使用 "validation.regExp.name": "仅允许输入字母、数字与_.@字符"报如下错误Message compilation error: Invalid linked format1|仅允许输入字母、数字与_.@字符Message compilation error: Unexpected lexical analysis in token: '字符'1|仅允许输入字母、

用this.$route.meta.title直接修改title不更新解决方案

在vue里面直接修改this.$route.meta.title值,页面title并不改变,解决方法是强制刷新页面this.$route.meta.title = data.name;this.$router.replace({query: {temp: Date.now()//必有...//页面其他参数}});...

#vue.js
vue-cli 本地运行http://localhost:8080报404错误

查看config/index.js里面的文件,dev: {assetsPublicPath: '/',host: 'localhost',port: 8080,}确保dev下面这三项正确,就可以正确运行http://localhost:8080

运行vue报错There are multiple modules with names that only differ in casing.

There are multiple modules with names that only differ in casing.This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.Use equal casing. Compare these module i..

JSON的特点和优势

检测变化的注意事项受现代JavaScript的限制(以及 废弃Object.observe), Vue不能检测到对象属性的添加或删除。 由于vue会在初始化实例时对属性执行getter/setter转化过程,所以属性必须在data对象上存在才能让vue转换它,这样才能让它是响应的。例如:var vm = new Vue({data:{num:1}...

uniapp开发支付宝小程序报错TypeError: Cannot read property ‘__VUE_DEVTOOLS_GLOBAL_HOOK__‘ of undefined

用uniapp+vue3.0+ts开发支付宝小程序报错如下:TypeError: Cannot read property ‘VUE_DEVTOOLS_GLOBAL_HOOK’ of undefined解决办法如下:进入 /node_modules/vuex/dist/vuex.esm-browser.js 和 /node_modules/vuex/dist/vuex.esm-bundler.js

#vue.js#javascript#小程序
解决brew报错 in `initialize‘: Version value must be a string; got a NilClass ()

原因: Mac 在升级为macOS Big Sur 系统,版本11.1后,之前旧版本的Homebrew在新系统不适配,报in `initialize’: Version value must be a string; got a NilClass ()解决办法:直接更新到最新版本的Homebrew就可以了$ brew update-reset重新查看版本,可以了$ brew --versionHo

    共 20 条
  • 1
  • 2
  • 请选择