HeaderNotice.vue 494 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <el-popover
  3. placement="bottom"
  4. title="标题"
  5. width="200"
  6. trigger="click"
  7. content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
  8. >
  9. <el-button slot="reference">待开发</el-button>
  10. </el-popover>
  11. </template>
  12. <script>
  13. export default {
  14. name: "HeaderNotice",
  15. components: {},
  16. data() {
  17. return {
  18. visible: false,
  19. };
  20. },
  21. computed: {},
  22. mounted() {},
  23. methods: {},
  24. };
  25. </script>
  26. <style coped>
  27. </style>