custom-content.vue 606 B

12345678910111213141516171819
  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
  6. >My wishes are fools, they shout across thy song, my Master. Let me but
  7. listen.</span
  8. >
  9. <el-divider>
  10. <el-icon><star-filled /></el-icon>
  11. </el-divider>
  12. <span>I cannot choose the best. The best chooses me.</span>
  13. <el-divider content-position="right">Rabindranath Tagore</el-divider>
  14. </div>
  15. </template>
  16. <script lang="ts" setup>
  17. import { StarFilled } from '@element-plus/icons-vue'
  18. </script>