2017-09-12 20:02:06 +00:00
|
|
|
.PHONY: vue
|
|
|
|
vue: ## Simple server for vue
|
|
|
|
python -mSimpleHTTPServer
|
|
|
|
|
|
|
|
.PHONY: nuxt
|
|
|
|
nuxt: ## nuxt.js demo
|
2022-04-14 07:27:38 +00:00
|
|
|
npm i https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz @nuxt/content
|
2021-09-19 04:11:54 +00:00
|
|
|
npx nuxt
|
2017-09-12 20:02:06 +00:00
|
|
|
|
|
|
|
.PHONY: weex
|
|
|
|
weex: ## Build weex project
|
|
|
|
bash ./weex.sh
|
|
|
|
|
|
|
|
.PHONY: ios
|
|
|
|
ios: weex ## weex ios sim
|
|
|
|
cd SheetJS; weexpack run ios; cd -
|