custom-content.vue 626 B

12345678910111213141516
  1. <template>
  2. <div>
  3. <span>What you are you do not see, what you see is your shadow. </span>
  4. <el-divider content-position="left">Rabindranath Tagore</el-divider>
  5. <span>My wishes are fools, they shout across thy song, my Master. Let me but listen.</span>
  6. <el-divider>
  7. <el-icon><star-filled /></el-icon>
  8. </el-divider>
  9. <span>I cannot choose the best. The best chooses me.</span>
  10. <el-divider content-position="right">Rabindranath Tagore</el-divider>
  11. </div>
  12. </template>
  13. <script lang="ts" setup>
  14. import { StarFilled } from '@element-plus/icons-vue'
  15. </script>