You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/site/components/api.vue

21 lines
358 B

<template>
<div class='markdown api-container'>
<slot v-if="isZhCN" name="cn"></slot>
<slot v-else></slot>
</div>
</template>
<script>
import { isZhCN } from '../util';
export default {
name: 'api',
inject: {
demoContext: { default: {}},
},
data () {
return {
isZhCN: isZhCN(this.demoContext.name),
};
},
};
</script>