Commit bd1677ac5c23af9c66c7b30c9eaabf3129ca911d

Authored by xingwenliang
0 parents

init

Too many changes to show.

To preserve performance only 4 of 16 files are displayed.

.gitignore 0 → 100644
  1 +++ a/.gitignore
  1 +.DS_Store
  2 +node_modules
  3 +/dist
  4 +
  5 +
  6 +# local env files
  7 +.env.local
  8 +.env.*.local
  9 +
  10 +# Log files
  11 +npm-debug.log*
  12 +yarn-debug.log*
  13 +yarn-error.log*
  14 +pnpm-debug.log*
  15 +
  16 +# Editor directories and files
  17 +.idea
  18 +.vscode
  19 +*.suo
  20 +*.ntvs*
  21 +*.njsproj
  22 +*.sln
  23 +*.sw?
... ...
README.md 0 → 100644
  1 +++ a/README.md
  1 +# test-vue-router-animation
  2 +
  3 +## Project setup
  4 +```
  5 +npm install
  6 +```
  7 +
  8 +### Compiles and hot-reloads for development
  9 +```
  10 +npm run serve
  11 +```
  12 +
  13 +### Compiles and minifies for production
  14 +```
  15 +npm run build
  16 +```
  17 +
  18 +### Lints and fixes files
  19 +```
  20 +npm run lint
  21 +```
  22 +
  23 +### Customize configuration
  24 +See [Configuration Reference](https://cli.vuejs.org/config/).
... ...
babel.config.js 0 → 100644
  1 +++ a/babel.config.js
  1 +module.exports = {
  2 + presets: [
  3 + '@vue/cli-plugin-babel/preset'
  4 + ]
  5 +}
... ...
jsconfig.json 0 → 100644
  1 +++ a/jsconfig.json
  1 +{
  2 + "compilerOptions": {
  3 + "target": "es5",
  4 + "module": "esnext",
  5 + "baseUrl": "./",
  6 + "moduleResolution": "node",
  7 + "paths": {
  8 + "@/*": [
  9 + "src/*"
  10 + ]
  11 + },
  12 + "lib": [
  13 + "esnext",
  14 + "dom",
  15 + "dom.iterable",
  16 + "scripthost"
  17 + ]
  18 + }
  19 +}
... ...