demo3.vue 335 B

1234567891011121314
  1. <template>
  2. <m-button @click="openMsg">文字居中</m-button>
  3. </template>
  4. <script setup>
  5. import { h } from 'vue-demi';
  6. import Message from '../index.js'; //此处为本地示例,请使用 import {Message} from "my-baseui";引入
  7. const openMsg = () => {
  8. Message({
  9. text: '居中的文字!',
  10. center: true
  11. })
  12. }
  13. </script>