An open API service indexing awesome lists of open source software.

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

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