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.
41 lines
840 B
41 lines
840 B
<script>
|
|
import Basic from './basic'
|
|
import Badge from './badge'
|
|
import Type from './type'
|
|
import Dynamic from './dynamic'
|
|
import CN from '../index.zh-CN.md'
|
|
import US from '../index.en-US.md'
|
|
|
|
const md = {
|
|
cn: `# Avatar头像
|
|
用来代表用户或事物,支持图片、图标或字符展示。
|
|
## 代码演示`,
|
|
us: `# Avatar
|
|
Avatars can be used to represent people or objects. It supports images, 'Icon's, or letters.
|
|
`,
|
|
}
|
|
export default {
|
|
render () {
|
|
return (
|
|
<div>
|
|
<md cn={md.cn} us={md.us}/>
|
|
<Basic/>
|
|
<br/>
|
|
<Badge/>
|
|
<br/>
|
|
<Type/>
|
|
<br/>
|
|
<Dynamic/>
|
|
<br/>
|
|
<api>
|
|
<template slot='cn'>
|
|
<CN/>
|
|
</template>
|
|
<US/>
|
|
</api>
|
|
</div>
|
|
)
|
|
},
|
|
}
|
|
</script>
|