当前位置: 首页 > article >正文

更新项目vue版本--入门篇

        今天想用下ElementPlus的Form表单,结果给我 Extraneous non-props attributes (ref_key) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.  这样一个警告

        出现这个警告跟vue版本有关,于是决定升级vue,执行npm update vue

        之前的警告没了。又出现 Feature flag __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ is not explicitly defined. You are running the esm-bundler build of Vue, which expects these compile-time feature flags to be globally injected via the bundler config in order to get better tree-shaki 的问题

        在vite.config.js文件中修改如下

export default defineConfig({
  plugins: [vue()],
  define: {
      // enable hydration mismatch details in production build
      __VUE_PROD_HYDRATION_MISMATCH_DETAILS__: 'true'
    }
})

        没有出现新的问题了。不过我查看package.json文件,vue和vite的版本没有更新。

        

查看vue版本

npm list vue

npm list vue version

npm info vue (详细查看vue版本号)

npm view vue version(简单查看vue版本号) 

        通过以上命令查看vue版本都显示了更新后的版本,项目运行又没有出错,估计是package.json不会自动更新

        安装 npm install npm-check-updates -g

npm-check-updates是一款实用工具,专门用于更新项目中的package.json文件依赖至最新版本。‌ 

        安装过后执行2步,1.ncu(检查最新版本),2.ncu -u(更新到最新版本),然后查看package.json,已更新到最新版本

        注意不能单更新vite,vite和vue需要匹配


http://www.kler.cn/a/351192.html

相关文章:

  • 怎么防止SQL注入攻击
  • 在Linux系统中无网络安装Nginx并配置负载均衡
  • 【CSS】HTML页面定位CSS - position 属性 relative 、absolute、fixed 、sticky
  • python基础语法(1) ------- 学习笔记分享
  • 如何在 Linux、MacOS 以及 Windows 中打开控制面板
  • MySQL 中删除重复数据 SQL 写法
  • 2.5 Spring Boot整合Spring MVC框架
  • 英语写作中“认为是……”consider/view/regard/deem的用法
  • 使用Hugging Face中的BERT进行标题分类
  • 【NLP】GloVe模型
  • c_cpp_properties.json文件的作用
  • Linux:linux系统中目录的遍历
  • Dockerfile构建Docker镜像
  • 【ChatGPT】什么是ChatGPT:基础介绍与使用场景
  • 每天住院人数
  • QUIC(Quick UDP Internet Connections)与 RTMP(Real Time Messaging Protocol)
  • springboot集成pdfbox解析pdf文件
  • 最近项目的笔记总结。
  • 私有变量、类函数、断言assert
  • vue播放flv和rtsp 格式视频
  • 找到你的乐趣,这六个网站不容错过!
  • 【算法题】62. 不同路径(LeetCode)
  • 安装vue发生异常:npm ERR! the command again as root/Administrator.
  • Docker 下安装 ElasticSearch 和 Kibana (单节点)
  • Python办公自动化案例:实现word表格转换成Excel表格
  • 【MySQL】入门篇—基本数据类型:使用WHERE子句进行数据过滤