mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
ade87f6729
* docs: standardize unified example code format and fix some example type * docs: update some example type * Update docs/examples/descriptions/sizes.vue Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com> * docs: update example-page-header * docs: update example-page-header --------- Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
20 lines
606 B
Vue
20 lines
606 B
Vue
<template>
|
|
<div>
|
|
<span>What you are you do not see, what you see is your shadow. </span>
|
|
<el-divider content-position="left">Rabindranath Tagore</el-divider>
|
|
<span>
|
|
My wishes are fools, they shout across thy song, my Master. Let me but
|
|
listen.
|
|
</span>
|
|
<el-divider>
|
|
<el-icon><star-filled /></el-icon>
|
|
</el-divider>
|
|
<span>I cannot choose the best. The best chooses me.</span>
|
|
<el-divider content-position="right">Rabindranath Tagore</el-divider>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { StarFilled } from '@element-plus/icons-vue'
|
|
</script>
|