2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-10 18:32:25 +03:00
Files
vue-meta/test/fixtures/changed.vue
T
2019-02-10 09:55:45 +01:00

27 lines
363 B
Vue

<template>
<div>
<hello-world v-if="childVisible"></hello-world>
</div>
</template>
<script>
import HelloWorld from './hello-world.vue'
export default {
components: {
HelloWorld
},
metaInfo() {
return {
changed: this.changed
}
},
data() {
return {
childVisible: false,
changed: () => {}
}
}
}
</script>