0.10.2 (2020-06-25)
- remove
console.log
(0b1d5a8)
0.10.1 (2020-06-25)
- export
nextTick
from@vue/composition-api
(df68e0a)
0.10.0 (2020-06-25)
- requires nuxt 2.13+ for
useFetch
- handle preexisting babel plugins function (c5c338f)
- specify type for inline function (694f21b)
- write static files synchronously (eb91a5f)
0.9.3 (2020-06-13)
0.9.2 (2020-06-13)
- remove duplicate static path definition (48b9afb)
- remove unnecessary spread (2300a93)
0.9.1 (2020-06-11)
0.9.0 (2020-06-10)
- There are a number of breaking changes in the latest upstream composition-api. See https://github.com/vuejs/composition-api/releases/tag/v0.6.0 for details.
- upgrade to
@vue/composition-api
v0.6.1 (3d0bdc6)
0.8.2 (2020-06-04)
- regression if
ssrRef
is used outside setup (in dev) (f2beecd)
0.8.1 (2020-06-02)
0.8.0 (2020-05-30)
0.7.5 (2020-05-30)
0.7.4 (2020-05-28)
0.7.3 (2020-05-27)
0.7.2 (2020-05-27)
- allow custom
globalContext
andglobalNuxt
(#80) (8b8d7eb) - reduce chance of
$fetch
/$fetchState
collision (534dc43), closes #74 - sanitise ssrRefs (fcb4a9d)
0.7.1 (2020-05-19)
0.7.0 (2020-05-14)
route
,query
,from
andparams
are now returned as refs fromuseContext
, which was probably what you wanted anyway.
- make route-related context reactive (91292c8)
0.6.3 (2020-05-11)
0.6.2 (2020-05-11)
- use appropriate core-js polyfill for ie11 (5281e66)
- insert composition api plugin before others (2ef608b)
- reduce meta type definitions (fa9efa3)
- revert data sanitisation (1a4bbed)
- sanitise
ssrRef
data (d86fdb2)
0.6.1 (2020-05-10)
- improve default values for
useMeta
(f3024e1)
0.6.0 (2020-05-09)
useHead()
no longer exists and insteaduseMeta
can be used directly withinsetup
, as long as a minimalhead: {}
is defined in the component options.
Note: Work has already begun on composable hooks for vue-meta
that will mean we don't need to define a minimal head
object: see here.
- allow automatic injection of
head()
into components (#43) (f1bda39), closes #41 - return
$fetch
and$fetchState
fromuseFetch
(c45177f)
0.5.0 (2020-05-08)
- improve memory usage (e3f7221)
0.4.1 (2020-05-08)
0.4.0 (2020-05-08)
withContext
is now deprecated
- add
useContext
helper function (9752a61), closes #29 - add composition api helper to interact with
head()
(#35) (b7467e2)
0.3.2 (2020-05-04)
- purge non-stringifiable values from ssrRefs (ac199b1)
0.3.1 (2020-05-04)
0.3.0 (2020-05-04)
- Revert "docs: remove live demo link (Now is rate-limiting deploy)" (bbd8661)
0.2.3 (2020-05-01)
- respect
fetchOnServer
option (368f33d)
0.2.2 (2020-04-30)
- correctly match
$fetch
and$fetchState
features (e2d0442)
0.2.1 (2020-04-30)
- require
@vue/composition-api
(f81182e)
0.2.0 (2020-04-30)
0.1.5 (2020-04-29)
- disable browser build (849edee)
0.1.4 (2020-04-29)
0.1.3 (2020-04-28)
- set $fetchState if nonexistent (d94c40e)
0.1.2 (2020-04-27)
onFetch
can now be accessed usinguseFetch
- rename onFetch to useFetch (3647769)
- add withContext hook (179f0e1)