├── .browserslistrc
├── demo
├── favicon.ico
├── js
│ ├── page-a.8dab36ef.js
│ ├── page-c.0da6fe79.js
│ ├── info.96340341.js
│ ├── address.f32017cc.js
│ ├── page-form.99c00b8c.js
│ ├── list.7507cbb5.js
│ ├── page-b.e7278ff2.js
│ ├── index.4ad0f835.js
│ └── chunk-vendors.19a69f38.js
└── index.html
├── public
├── favicon.ico
└── index.html
├── babel.config.js
├── examples
├── assets
│ └── logo.png
├── views
│ ├── PageA.vue
│ ├── PageC.vue
│ ├── Home.vue
│ ├── Info.vue
│ ├── List.vue
│ ├── PageB.vue
│ ├── Address.vue
│ └── Form.vue
├── store
│ └── index.js
├── main.js
├── App.vue
├── router
│ └── index.js
└── components
│ └── InfinityList.vue
├── .gitignore
├── .npmignore
├── .eslintrc.js
├── vue.config.js
├── README.md
├── package.json
└── keep-alive-chain
└── index.js
/.browserslistrc:
--------------------------------------------------------------------------------
1 | > 1%
2 | last 2 versions
3 |
--------------------------------------------------------------------------------
/demo/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dongj0316/keep-alive-chain/HEAD/demo/favicon.ico
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dongj0316/keep-alive-chain/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/examples/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dongj0316/keep-alive-chain/HEAD/examples/assets/logo.png
--------------------------------------------------------------------------------
/examples/views/PageA.vue:
--------------------------------------------------------------------------------
1 |
2 | A
4 |
5 | C
4 |
5 |
11 | Index
4 |
5 |
12 |