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

16 lines
159 B
Vue
Raw Normal View History

2017-07-03 18:19:22 +00:00
<template>
<div>
<Test />
</div>
2017-07-03 18:19:22 +00:00
</template>
<script>
import Test from '@/components/test'
2017-07-03 18:19:22 +00:00
export default {
2017-10-31 13:26:19 +00:00
components: {
Test
2017-10-31 13:26:19 +00:00
}
2017-07-03 18:19:22 +00:00
}
</script>