Installation
Last updated
Was this helpful?
Last updated
Was this helpful?
For proper working you need a Vue.js Project with Vuetify 2.0 installed. After successful installation of a you have to install , the world’s most popular Vue.js framework for building feature rich, blazing fast applications.
vuetify-form-base is a with a .vue extension and you can use it like any other Vue-Component.
npm install vuetify-form-base --save
The Vue-Loader can not autoload dynamic components with and therefore Vuetify-Components must be . Find more Information about dynamic Components in the official .
Steps to import
Go to the file src/plugins/vuetify.js
Import all the necessary components and directives used by vuetify-form-base:
Components
VRow
VCol
VTooltip
VTextField
VSelect
VSlider
Directives
Ripple
Intersect
Touch
Resize
After this, the library will be successfully imported to your Vue file, and no errors on the console should appear.
If a new error appears on the console, it means component you are using is not imported. See the name of the component on the console and add to the plugin file.
Example file from src/plugins/vuetify.js
This example shows how to import the needed components and directives to use the vuetify-form-base and some basic components like VTextField, VCheckbox, VSelect.