123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <el-button plain @click="open1"> Success </el-button>
- <el-button plain @click="open2"> Warning </el-button>
- <el-button plain @click="open3"> Info </el-button>
- <el-button plain @click="open4"> Error </el-button>
- </template>
- <script lang="ts" setup>
- import { ElNotification } from 'element-plus'
- const open1 = () => {
- ElNotification({
- title: 'Success',
- message: 'This is a success message',
- type: 'success',
- })
- }
- const open2 = () => {
- ElNotification({
- title: 'Warning',
- message: 'This is a warning message',
- type: 'warning',
- })
- }
- const open3 = () => {
- ElNotification({
- title: 'Info',
- message: 'This is an info message',
- type: 'info',
- })
- }
- const open4 = () => {
- ElNotification({
- title: 'Error',
- message: 'This is an error message',
- type: 'error',
- })
- }
- </script>
|