Skip to content

chans-open-source/optimize-vue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

optimize-vue

LICENSE

Install Cli

npm i -g optimize-vue-cli

Create Project

vues create <project-name>
// eg: vues create demo

Init Project

// Install vue-cli-3.0 at first.
npm install -g @vue/cli

// Open Project Dir
cd <project-name>

// Init
yarn install 

Add Module

Remark: Used in the project root directory.

vues add -m <module-title> -p <module-path>
// eg: vues add -m module1 -p /mobile/page/index
// Html-Title: module1
// Html-Url: localhost:port/mobile/page/index

Add Component

Remark: Used in the project root directory.

vues add -c <component-path>
// eg: vues add -c /home/index

Project setup

yarn install

Compiles and hot-reloads for development

yarn run serve

Compiles and minifies for production

yarn run build

Run your tests

yarn run test

Lints and fixes files

yarn run lint

Customize configuration

See Configuration Reference.

See Cli Information