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.
19 lines
347 B
19 lines
347 B
<template>
|
|
<div class='markdown api-container' id="component-api">
|
|
<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>
|