Browse Source

Removed references to Vuetify

next
Pierre Vanhulst 3 years ago
parent
commit
c7271f3f29
  1. 28
      README.md

28
README.md

@ -23,42 +23,18 @@ Please make sure that you have added a working [SSH key to your Gogs account](ht
### Setup
1. Import colvis-client in your project
2. Load Vuetify beforehand
3. Tell Vue to use Colvis along with the initialized Vuetify
3. Tell Vue to use Colvis
```
import Vue from 'vue';
import Vuetify from 'vuetify';
import Colvis from 'colvis-client';
Vue.use(Vuetify, {...vuetify options});
Vue.use(Colvis, { Vuetify: Vuetify });
Vue.use(Colvis);
new Vue(
...
)
```
ColVis asks for a list of Vuetify components to be loaded in order to work:
- VLayout
- VForm
- VCombobox
- VAutocomplete
- VBtn
- VIcon
- VNavigationDrawer
- VCard
- VToolbar
- VCheckbox
- VStepper
- VStepperContent
- VStepperHeader
- VStepperStep
- VTextarea
- VTextField
In case you need help to initialize Vuetify, take a look at the [example's plugin file](https://gogs.vanhulst.one/Human-IST/colvis-client/src/master/example/src/plugins/vuetify.ts).
### Run the example of this repository
Please check [the dedicated page](https://gogs.vanhulst.one/Human-IST/colvis-client/src/master/example) to run the example.

Loading…
Cancel
Save