File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ # 2.0.0-beta.0 (2022-07-17)
3+ This is the first 2.0 beta version. Still change until the stable release. Documentation will also be updated once stable.
4+
5+ # Breakings
6+ ## ` loading ` is renamed to ` isLoading `
7+ ``` diff
8+ - const { loading } = useConditionWatcher({...})
9+ + const { isLoading } = useConditionWatcher({...})
10+ ```
11+
12+ ## Change ` export ` to ` export default `
13+ ``` diff
14+ - import { useConditionWatcher } from 'vue-condition-watcher'
15+ + import useConditionWatcher from 'vue-condition-watcher'
16+ ```
17+
18+ # What's Changed
19+
20+ - chore: Switch to pnpm & turborepo & vitest
21+ - breaking: rename loading to isLoading
22+ - fix: ` beforeFetch ` receive conditions type
23+
24+ ### Full Changelog: https://github.com/runkids/vue-condition-watcher/compare/1.4.7...2.0.0-beta.0
You can’t perform that action at this time.
0 commit comments