head_component.vue 449 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="contenter">
  3. <el-button>返回</el-button>
  4. <div>{{headinfo.title}}</div>
  5. <div>头像</div>
  6. <el-button>退出</el-button>
  7. <el-button>使用说明</el-button>
  8. </div>
  9. </template>
  10. <script setup>
  11. defineProps({
  12. headinfo: {
  13. }
  14. })
  15. </script>
  16. <style scoped>
  17. .contenter {
  18. width: 100%;
  19. display: flex;
  20. flex-direction: row;
  21. }
  22. </style>