ant-design-vue/site/components/api.vue

21 lines
355 B
Vue
Raw Normal View History

2018-04-04 10:39:21 +00:00
<template>
2018-04-07 09:38:39 +00:00
<div class='markdown api-container'>
2018-04-04 10:39:21 +00:00
<slot v-if="isZhCN" name="cn"></slot>
<slot v-else></slot>
</div>
</template>
<script>
import { isZhCN } from '../util'
export default {
name: 'api',
2018-07-13 13:55:29 +00:00
inject: {
demoContext: { default: {}},
},
2018-04-04 10:39:21 +00:00
data () {
return {
2018-07-13 13:55:29 +00:00
isZhCN: isZhCN(this.demoContext.name),
2018-04-04 10:39:21 +00:00
}
},
}
</script>