forked from jones2000/HQChart
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
17,289 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": ["vue-app"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.DS_Store | ||
node_modules/ | ||
dist/ | ||
npm-debug.log | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.PHONY: dist build | ||
install: | ||
@npm install | ||
|
||
dev: install | ||
@npm run dev | ||
|
||
build: | ||
@npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# element-starter | ||
|
||
> A starter kit for Element UI generated by vue-cli | ||
*If you are familiar with [cooking](https://github.com/elemefe/cooking), [here](https://github.com/ElementUI/element-cooking-starter) is a starter generated with it* | ||
|
||
## Environment | ||
|
||
`Node >= 6` | ||
|
||
## Start | ||
|
||
- Clone or download this repository | ||
- Enter your local directory, and install dependencies: | ||
|
||
``` bash | ||
npm install | ||
``` | ||
|
||
## Develop | ||
|
||
``` bash | ||
# serve with hot reload at localhost:8010 | ||
npm run dev | ||
``` | ||
|
||
## Build | ||
|
||
``` bash | ||
# build for production with minification | ||
npm run build | ||
``` |
Oops, something went wrong.