demo5.vue 280 B

1234567891011121314
  1. <template>
  2. <m-button @click="openMsg">消息提示</m-button>
  3. </template>
  4. <script setup>
  5. import { getCurrentInstance } from "vue";
  6. const instance = getCurrentInstance();
  7. const openMsg = () => {
  8. instance.proxy.$message({
  9. text: '默认消息提示!'
  10. });
  11. };
  12. </script>