https://github.com/data-fair/vue-cli-plugin-app
A vue-cli plugin to create data-fair applications
https://github.com/data-fair/vue-cli-plugin-app
Last synced: 4 months ago
JSON representation
A vue-cli plugin to create data-fair applications
- Host: GitHub
- URL: https://github.com/data-fair/vue-cli-plugin-app
- Owner: data-fair
- License: mit
- Created: 2021-08-10T13:02:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-07-22T10:12:01.000Z (almost 4 years ago)
- Last Synced: 2025-10-18T08:05:35.178Z (8 months ago)
- Language: JavaScript
- Size: 579 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @data-fair/vue-cli-plugin-app
A vue-cli plugin to create data-fair applications
## Usage
npm install -g @vue/cli
vue create my-app # the default vue 2 preset is ok
cd my-app
vue add vuex
vue add vuetify # chose the default preset
vue add @data-fair/app
npm run dev
## Development
Test the plugin from local code source
cd ..
vue create test-app # the default vue 2 preset is ok
cd test-app
vue add vuex
vue add vuetify # chose the default preset
npm install --save-dev file:/full/path/plugin
vue invoke @data-fair/app
npm run lint
npm run dev