vue conf 2021 points

Posted JaredWang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue conf 2021 points相关的知识,希望对你有一定的参考价值。

vue conf 2021里我关心的points

Vue 3生态进展

  • vue router稳定
  • vuex稳定

开发体验改进

  • 构建工具vite
  • SFC语法
  • IDE/TS支持

vite

  • 类似vue-cli的体验
  • 基于原生ESM的热更新
  • 基于esbuild的依赖预打包
  • 兼容rollup的插件机制
  • 内置SSR支持
  • ...

VitePress

  • VuePress的所有优点
  • Vite的速度
  • 避免静态内容的double payload和hydration开销

编译阶段的优化

  • script setup
<template>
    <h1>{{ msg }}</h1>
</template>

<script setup>
const msg = \'Hello World\'
</script>
  • style动态变量注入
<template>
    <h1>{{ msg }}</h1>
</template>

<script setup>
import { ref } from \'vue\'
  
const msg = \'Hello World\'
const color = ref(\'red\')
</script>

<style>
  h1 {
    color: v-bind(color)
  }
</style>

Vue Tools

  • Vue 2/3
  • Timeline面板
  • 性能调试

IDE支持计划

  • Vetur -> Volar
  • 官方的vue-tsc命令行类型检查
  • 提供其他编辑器的LSP整合

2.7

  • IE11支持

3.1和3.2

  • Migration Build
  • Suspense

element 3

headless

  • Element core
  • Element style (Web GL)

以上是关于vue conf 2021 points的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段1——vue主模板

VSCode自定义代码片段——.vue文件的模板

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

VSCode自定义代码片段(vue主模板)

VSCode自定义代码片段11——vue路由的配置

VSCode自定义代码片段11——vue路由的配置