index.vue 285 B

123456789101112131415
  1. <template>
  2. <el-button>DashBoard</el-button>
  3. <el-button @click="handle"></el-button>
  4. </template>
  5. <script lang="ts" setup>
  6. const a = ref(1);
  7. const { proxy } = getCurrentInstance()!;
  8. const handle = () => {
  9. proxy?.$message({
  10. message: "Hello World!" + a.value
  11. });
  12. };
  13. </script>