dev-audioprocessing/pages/index.vue

23 lines
297 B
Vue

<template>
<div>
<home-bar />
<NuxtPage page-key="child" />
</div>
</template>
<script>
import HomeBar from "../components/homebar";
export default {
components: {HomeBar},
methods:{
handleAnimation: function (anim) {
this.anim = anim;
}
}
}
</script>