Vue3,要使用哪个存储库,vue3 或 vue-next
Vue3, which repository to use, vue3, or vue-next
所以,
这可能是个愚蠢的问题,但我就是找不到答案。
在 VueJS 文档中,他们说在迁移步骤中我应该将我的 package.json 更改为使用:
vue: "^3.1.0"
但是在介绍中,他们说我应该使用:
vue-next: "^3.1.0"
有什么区别?
我对它的解释是否正确,因为 vue 只是过渡存储库?
如果我从 2 > 3 移动,是否必须使用 vue one?或者我可以立即开始使用 vue-next 吗?(当然有变化)。
可能很愚蠢,但我现在对文档有点困惑。
提前致谢!
vue-next
一定是文档中的拼写错误(或过时的信息),因为 vue-next
is an unmaintained pre-alpha package, and vue
is stable for 3.x versions. However, "vue-next"
doesn't appear in the Vue 3 Introduction, but "vue@next"
is seen under Installation (where next
is just an alias for 3.x).
只需像这样安装vue
:
npm i -S vue@^3.x
# or
npm i -S vue@next
所以,
这可能是个愚蠢的问题,但我就是找不到答案。 在 VueJS 文档中,他们说在迁移步骤中我应该将我的 package.json 更改为使用:
vue: "^3.1.0"
但是在介绍中,他们说我应该使用:
vue-next: "^3.1.0"
有什么区别? 我对它的解释是否正确,因为 vue 只是过渡存储库?
如果我从 2 > 3 移动,是否必须使用 vue one?或者我可以立即开始使用 vue-next 吗?(当然有变化)。
可能很愚蠢,但我现在对文档有点困惑。
提前致谢!
vue-next
一定是文档中的拼写错误(或过时的信息),因为 vue-next
is an unmaintained pre-alpha package, and vue
is stable for 3.x versions. However, "vue-next"
doesn't appear in the Vue 3 Introduction, but "vue@next"
is seen under Installation (where next
is just an alias for 3.x).
只需像这样安装vue
:
npm i -S vue@^3.x
# or
npm i -S vue@next