index.vue 263 B

12345678910111213141516171819
  1. <template>
  2. <span>
  3. <svg-icon class-name="size-icon" icon-class="redis" @click="openMsg" />
  4. </span>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },
  12. methods: {
  13. openMsg() {
  14. this.$emit('openMsg')
  15. },
  16. },
  17. };
  18. </script>