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

16 lines
158 B
Vue

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