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

26 lines
439 B
Vue
Raw Normal View History

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