27 lines
350 B
Vue
27 lines
350 B
Vue
<docs>
|
|
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本使用
|
|
en-US: Basic Usage
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
获取 `message`、`notification`、`modal` 静态方法。
|
|
|
|
## en-US
|
|
|
|
Static method for `message`, `notification`, `modal`.
|
|
</docs>
|
|
|
|
<template>
|
|
<a-app>
|
|
<my-page />
|
|
</a-app>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import myPage from './myPage.vue';
|
|
</script>
|