2018-04-04 18:39:21 +08:00
|
|
|
<template>
|
2019-02-01 17:23:00 +08:00
|
|
|
<div class="markdown api-container">
|
|
|
|
<slot
|
|
|
|
v-if="isZhCN"
|
|
|
|
name="cn"
|
|
|
|
/>
|
|
|
|
<slot v-else />
|
2018-04-04 18:39:21 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2019-01-12 11:33:27 +08:00
|
|
|
import { isZhCN } from '../util';
|
2018-04-04 18:39:21 +08:00
|
|
|
export default {
|
2019-02-01 17:23:00 +08:00
|
|
|
name: 'Api',
|
2018-07-13 21:55:29 +08:00
|
|
|
inject: {
|
|
|
|
demoContext: { default: {}},
|
|
|
|
},
|
2018-04-04 18:39:21 +08:00
|
|
|
data () {
|
|
|
|
return {
|
2018-07-13 21:55:29 +08:00
|
|
|
isZhCN: isZhCN(this.demoContext.name),
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2018-04-04 18:39:21 +08:00
|
|
|
},
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2018-04-04 18:39:21 +08:00
|
|
|
</script>
|