Skip to content

Usage

Here are some uses of the cli on tools-web.

Vue

Basic command:

  • Start command
    bash
    vue -h
    vue -h
  • Create new component
    bash
    vue make:component Button
    vue make:component Button
  • Create new route
    bash
    vue make:route World /world
    vue make:route World /world
  • Create new store
    bash
    vue make:store user
    vue make:store user

Integration framework/library command:

bash
vue add:quasar
vue add:vuetify
vue add:antd
vue add:element-plus
vue add:quasar
vue add:vuetify
vue add:antd
vue add:element-plus

Cheatsheet

CommandDescriptionArgumentsOptions
add:quasarProject integration with Quasar
add:vuetifyProject integration with Vuetify 3--icon <name>
add:antdProject integration with Ant Design
add:element-plusProject integration with Element Plus
make:componentGenerate component<name>--no-hook
make:routeGenerate route pages<name> <url>--no-hook
make:storeGenerate store<name>

Released under the MIT License.