Vuetify 2.0.0-beta.0 has just been released and I want to try it out and play around in a new vue test application.
But I get errors when I try to install it in a fresh new project. Here are the steps I've taken.
I use @vue/cli v3.8.2
to create a new project with default settings:
vue create testapp
which gives me successful result:
?? Successfully created project testapp.
?? Get started with the following commands:
$ cd testapp
$ npm run serve
Then I add vuetify plugin to the project with default (recommended) preset:
cd testapp
vue add vuetify
which gives me success:
?? Installing vue-cli-plugin-vuetify...
+ [email protected]
added 1 package from 1 contributor and audited 23942 packages in 9.235s
found 0 vulnerabilities
? Successfully installed plugin: vue-cli-plugin-vuetify
? Choose a preset: Default (recommended)
?? Invoking generator for vue-cli-plugin-vuetify...
?? Installing additional dependencies...
added 11 packages from 49 contributors and audited 23980 packages in 9.252s
found 0 vulnerabilities
? Running completion hooks...
? Successfully invoked generator for plugin: vue-cli-plugin-vuetify
Now in package.json
I see vuetify version:
"vuetify": "^1.5.5"
I now update it to the v2.0.0-beta.0
like this:
npm install [email protected]
I get success again:
+ [email protected]
updated 1 package and audited 23980 packages in 10.302s
found 0 vulnerabilities
Now when I try to run it:
npm run serve
I get error:
> [email protected] serve c:empestapp
> vue-cli-service serve
INFO Starting development server...
98% after emitting CopyPlugin
ERROR Failed to compile with 99 errors 6:17:04 PM
This dependency was not found:
* vuetify/src/stylus/app.styl in ./src/plugins/vuetify.js
To install it, you can run: npm install --save vuetify/src/stylus/app.styl
Failed to resolve loader: sass-loader
You may need to install it.
If I install sass-loader like this:
npm i -D node-sass sass-loader
I get success. Then I try to run it again:
npm run serve
Now again I get different error:
ERROR Failed to compile with 1 errors 6:27:06 PM
This dependency was not found:
* vuetify/src/stylus/app.styl in ./src/plugins/vuetify.js
To install it, you can run: npm install --save vuetify/src/stylus/app.styl
I am stuck here as I don't know how to fix this error. npm install --save vuetify/src/stylus/app.styl
obviously don't work. Also I couldn't make it work neither by following official vuetify page for this beta release.
See Question&Answers more detail:
os