mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-20 18:10:34 +03:00
fix: trigger meta refresh on page load (fixes #283)
This commit is contained in:
+22
-2
@@ -9,8 +9,10 @@ export default function createMixin(options) {
|
||||
const updateOnLifecycleHook = ['activated', 'deactivated', 'beforeMount']
|
||||
|
||||
const triggerUpdate = (vm) => {
|
||||
// batch potential DOM updates to prevent extraneous re-rendering
|
||||
batchID = batchUpdate(batchID, () => vm.$meta().refresh())
|
||||
if (vm.$root._vueMetaInitialized) {
|
||||
// batch potential DOM updates to prevent extraneous re-rendering
|
||||
batchID = batchUpdate(batchID, () => vm.$meta().refresh())
|
||||
}
|
||||
}
|
||||
|
||||
// watch for client side component updates
|
||||
@@ -46,6 +48,24 @@ export default function createMixin(options) {
|
||||
this.$options[lifecycleHook].push(() => triggerUpdate(this))
|
||||
})
|
||||
|
||||
// force an initial refresh on page load and prevent other lifecycleHooks
|
||||
// to triggerUpdate until this initial refresh is finished
|
||||
// this is to make sure that when a page is opened in an inactive tab which
|
||||
// has throttled rAF/timers we still immeditately set the page title
|
||||
if (isUndefined(this.$root._vueMetaInitialized)) {
|
||||
this.$root._vueMetaInitialized = false
|
||||
|
||||
this.$root.$options.mounted = this.$root.$options.mounted || []
|
||||
this.$root.$options.mounted.push(() => {
|
||||
if (!this.$root._vueMetaInitialized) {
|
||||
this.$nextTick(function () {
|
||||
this.$root.$meta().refresh()
|
||||
this.$root._vueMetaInitialized = true
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// do not trigger refresh on the server side
|
||||
if (!this.$isServer) {
|
||||
// re-render meta data when returning from a child component to parent
|
||||
|
||||
Reference in New Issue
Block a user