Nuxt/test/fixtures/ssr/pages/component.vue

16 lines
159 B
Vue

<template>
<div>
<test />
</div>
</template>
<script>
import test from '@/components/test'
export default {
components: {
test
}
}
</script>