diff --git a/src/shared/plugin.js b/src/shared/plugin.js index a4bd1e5..352e072 100644 --- a/src/shared/plugin.js +++ b/src/shared/plugin.js @@ -61,6 +61,10 @@ export default function VueMeta (Vue, options = {}) { beforeMount () { // batch potential DOM updates to prevent extraneous re-rendering batchID = batchUpdate(batchID, () => this.$meta().refresh()) + }, + destroyed () { + // batch potential DOM updates to prevent extraneous re-rendering + batchID = batchUpdate(batchID, () => this.$meta().refresh()) } }) }