vue todo app
1.0.0
Vue, Vuex 및 Element.ui 간의 통합을 실천하는 것은 쉬운 프로젝트입니다.
npm install
npm run serve
npm run build
Heroku의 내 앱 : https://vue-todo-test.herokuapp.com/
자세한 내용은 호스팅시 WebApp.io 문서를 확인하십시오.
모든 VUE 프로젝트에 GitHub 페이지를 갖기 위해 :
#! /usr/bin/env sh
# abort on errors
set -e
# build
npm run build
# navigate into the build output directory
cd dist
# if you are deploying to a custom domain
# echo 'www.example.com' > CNAME
git init
git add -A
git commit -m ' deploy '
# if you are deploying to https://<USERNAME>.github.io
# git push -f [email protected]:<USERNAME>/<USERNAME>.github.io.git master
# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f [email protected]:OussamaAlouat/vue-todo-app.git master:gh-pages
cd - module . exports = {
baseUrl : process . env . NODE_ENV === 'production'
? '/vue-todo-app/'
: '/'
}