1👍
Are you using the latest version of the docs? I followed the link you provided and the anchor #bootstrapping-the-vuetify-object
doesn’t appear to exist anymore. I was able to get a basic project up and running successfully following these steps:
vue create myapp
: Selected “custom” and ticked all the boxes, for TypeScript, chose the default “class-style components”- verified that
npm run serve
worked vue add vuetify
: Selected “Configure”, and these options:- Y (default)
- y
- y
- Material Design Icons (default)
- N (default)
- Y (default)
- English (default)
npm run serve
would run, but I got warnings about type declaration forvuetify/lib
. This answer led me to this FAQ item which made the warnings go away. (You have to add"vuetify"
to thecompilerOptions.types
array in the roottsconfig.json
for the project.)
FWIW, fibers
does not appear to be included in the project at all anymore (searched for “fibers” in package-lock.json
). My babel.config.js
file looks like:
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
And vue.config.js
looks like:
module.exports = {
transpileDependencies: [
'vuetify'
]
}
Hope this helps!
- [Vuejs]-Load data already registered in a form – VueJS – Bootstrap-Vue
- [Vuejs]-Is there a way to use Conditional Rendering within List Rendering (v-for) in Vue JS
Source:stackexchange.com