2018-02-13 20:11:28 +08:00
|
|
|
<template>
|
|
|
|
|
<Container>
|
2018-02-13 21:20:57 +08:00
|
|
|
<PageHeader
|
|
|
|
|
slot="header"
|
2018-02-13 23:20:06 +08:00
|
|
|
:title="`${$t('pub.pageHeader.demo')} 1`"
|
2018-02-13 21:20:57 +08:00
|
|
|
url="http://kazupon.github.io/vue-i18n/en/">
|
|
|
|
|
</PageHeader>
|
2018-02-13 21:33:44 +08:00
|
|
|
<DemoI18nControl></DemoI18nControl>
|
|
|
|
|
<DemoI18n></DemoI18n>
|
2018-02-13 20:11:28 +08:00
|
|
|
</Container>
|
|
|
|
|
</template>
|
2018-02-13 20:52:54 +08:00
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2018-02-13 21:33:44 +08:00
|
|
|
components: {
|
2018-03-09 19:21:10 +08:00
|
|
|
DemoI18nControl: () => import('./components/DemoI18nControl'),
|
|
|
|
|
DemoI18n: () => import('./components/DemoI18n')
|
2018-02-13 20:52:54 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|