Các ví dụ về việc sử dụng @ionic/vue
Cài đặt
yarn install
# or
npm install
Chạy máy chủ phát triển cục bộ
yarn run serve
# or
npm run serve
.browserslistrc
> 1%
last 2 versions
not ie <= 8
.editorconfig
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.{js,vue,css}]
charset = utf-8
indent_style = space
indent_size = 2
continuation_indent_size = 6
.env
VUE_APP_NAME=IONIC_VUE_DOCS
.eslintrc.js
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/prettier',
'eslint:recommended',
'plugin:promise/recommended',
],
plugins: ['vue', 'promise'],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
},
parserOptions: {
parser: 'babel-eslint',
},
}
.gitignore
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
electron/
# Log files
*.log
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
# ios specific
/ios/App/App.ipa
/ios/App/fastlane/report.xml
/ios/App/App.app.dSYM.zip
# fastlane specific
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
# android specific
/android/app/release
android/signing/*
!android/signing/.gitkeep
!android/signing/keystore.properties.example
Chi tiết tải về:
Tác giả: ModusCreateOrg
Nguồn: https://github.com/ModusCreateOrg/ionic-vue-examples/
Giấy phép: MIT license