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

15 lines
162 B
Vue
Raw Normal View History

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