Files
mes-ui-d2/src/pages/demo/plugins/i18n/demo2.vue
liyang 8f4cd65ece no message
Former-commit-id: 85b7eab49c2dc78468172c3746fe9144b6eb3544
Former-commit-id: e6e5da925e91f568a3950b9e988b4d4996cf5bf5
Former-commit-id: 75fc437dff21eb7120b2518771d6bde731a5c75d
2018-06-10 16:36:09 +08:00

17 lines
385 B
Vue

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