syonip / blog-comments

0 stars 0 forks source link

vue-cli-router-vuetify-plugins #7

Open utterances-bot opened 4 years ago

utterances-bot commented 4 years ago

Vue CLI Router + Vuetify plugins | Jonathan's Dev Blog

banner What is this? A short tutorial about how to correctly combine Vue CLI’s router plugin and vuetify plugin into one layout. What’s the problem? Vue CLI plugins scaffold a recommended layout for you by changing the app files, but they also override each other’s changes…

https://www.learningsomethingnew.com/vue-cli-router-vuetify-plugins

bryanjhv commented 4 years ago

Another option was to run:

ln -rs src/router/index.js src/router.js

before running vue add vuetify.

That's because Vuetify generator looks for a src/router.[ext] file.

syonip commented 4 years ago

Thanks @bryanjhv I'll check it out

arinzejustin commented 2 years ago

@bryanjhv Cool. It works