建立vue專案(2 9 6)

2021-10-11 09:13:03 字數 2301 閱讀 8719

檢視vue版本

vue --version

2.9.6

node -v

v15.0.1

win+x管理員開啟powershell(建議管理員身份啟動,不然容易報錯,ps:vscode和webstrom等終端預設是user身份啟動。所以,建議還是用powershell建立vue專案)

cd ***

vue init webpack my_learning2

? project name my_learning2

? project description a vue.js project

? author wingsky6 <[email protected]>

? vue build standalone

? install vue-router? yes

? use eslint to lint your code? yes

? pick an eslint preset standard

? set up unit tests yes

? pick a test runner jest

? setup e2e tests with nightwatch? yes

? should we run `

npminstall

` for you after the project has been created? (recommended)

npm

進入專案

cd my_learning2啟動

npm start

打包npm build

done  compiled successfully in 3971ms
ok!!

+--.babelrc

+--.editorconfig

+--.eslintignore

+--.eslintrc.js

+--.gitignore

+--.postcssrc.js

+--build

| +--build.js

| +--check-versions.js

| +--logo.png

| +--utils.js

| +--vue-loader.conf.js

| +--webpack.base.conf.js

| +--webpack.dev.conf.js

| +--webpack.prod.conf.js

+--config

| +--dev.env.js

| +--index.js

| +--prod.env.js

| +--test.env.js

+--index.html

+--package-lock.json

+--package.json

+--readme.md

+--src

| +--assets

|| +--logo.png

| +--components

|| +--helloworld.vue

| +--main.js

| +--router

|| +--index.js

+--static

| +--.gitkeep

+--test

| +--e2e

|| +--custom-assertions||

| +--elementcount.js

|| +--nightwatch.conf.js

|| +--runner.js

|| +--specs||

| +--test.js

| +--unit

|| +--.eslintrc

|| +--jest.conf.js

|| +--setup.js

|| +--specs||

| +--helloworld.spec.js

解除安裝 vue 2 9 6 失敗

我是想安裝一下vue的穩定版本,因為3.x還沒開始學,結果用npm 解除安裝不了總是不成功。1.參考部落格 mac 公升級 vue 3.x 之前解除安裝 vue 2.9.6 失敗的原因和解決方法 寫得很詳細,也跟我的情況相似,但是細看有差別。我的vue肯定是安裝nvm之後用npm安裝的,usr lo...

vue 建立vue專案

在程式開發中,有三種方式建立vue專案,本地引入vuejs 使用cdn引入vuejs 使用vue cli建立vue專案。其中vue cli可以結合webpack打包工具使用,大大方便了開發步驟,使用廣泛。在用 vue 構建大型應用時推薦使用 npm 安裝 1 npm 能很好地和諸如 webpack ...

vue 2 9 6無法解除安裝問題

執行cmd 首先輸入 where vue 檢視在 有vue檔案 刪除上面顯示的硬碟上的檔案 然後解除安裝 npm uninstall vue cli g 修改c x中的npmrc檔案,改為 prefix d node node global cache d node node cache開啟環境變數...