Nuxt/examples/i18n/pages/_lang/about.vue

14 lines
145 B
Vue
Raw Normal View History

2017-02-08 19:13:14 +00:00
<template>
2017-02-13 18:08:22 +00:00
<about/>
2017-02-08 19:13:14 +00:00
</template>
2017-02-13 18:08:22 +00:00
<script>
import About from '~/partials/About.vue'
export default {
components: {
About
}
2017-02-08 19:13:14 +00:00
}
2017-02-13 18:08:22 +00:00
</script>