mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
70fa3e7f26
* feat(components): [el-message] config-provider message max attr * chore: update test * feat: update test and message-method * chore: format config-provider.md * test: add multiple config-provider * test: config-provider nesting
19 lines
361 B
Vue
19 lines
361 B
Vue
<template>
|
|
<div>
|
|
<el-config-provider :message="config">
|
|
<el-button @click="open">open</el-button>
|
|
</el-config-provider>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { reactive } from 'vue'
|
|
import { ElMessage } from 'element-plus'
|
|
const config = reactive({
|
|
max: 3,
|
|
})
|
|
const open = () => {
|
|
ElMessage('this is a message.')
|
|
}
|
|
</script>
|