├── .babelrc ├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── scripts └── version.js ├── src ├── index.js ├── lazy.js ├── shouldUpdate.js ├── util.js └── watch.js ├── test └── index.js ├── types └── index.d.ts └── vitest.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/package.json -------------------------------------------------------------------------------- /scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/scripts/version.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/src/lazy.js -------------------------------------------------------------------------------- /src/shouldUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/src/shouldUpdate.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/src/util.js -------------------------------------------------------------------------------- /src/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/src/watch.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/test/index.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxbenjaminfox/vue-async-computed/HEAD/vitest.config.js --------------------------------------------------------------------------------