17 lines
378 B
Vue
17 lines
378 B
Vue
|
|
<template>
|
||
|
|
<d2-container>
|
||
|
|
<template slot="header">{{`${$t('pub.pageHeader.demo')} 2`}}</template>
|
||
|
|
<DemoI18nControl></DemoI18nControl>
|
||
|
|
<DemoI18n></DemoI18n>
|
||
|
|
</d2-container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
DemoI18nControl: () => import('./components/DemoI18nControl'),
|
||
|
|
DemoI18n: () => import('./components/DemoI18n')
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|