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

19 lines
347 B

7 years ago
<template>
7 years ago
<div class='markdown api-container' id="component-api">
7 years ago
<slot v-if="isZhCN" name="cn"></slot>
<slot v-else></slot>
</div>
</template>
<script>
import { isZhCN } from '../util'
export default {
name: 'api',
data () {
const { name } = this.$route.params
return {
isZhCN: isZhCN(name),
}
},
}
</script>