wiki 工程重构

This commit is contained in:
simple321vip
2023-03-25 23:58:10 +08:00
parent e875c917ba
commit d7f16629f6
8 changed files with 518 additions and 533 deletions
+12
View File
@@ -0,0 +1,12 @@
import { h } from 'vue'
import { ElMessage } from 'element-plus'
const setErrorMessage = (msg: string) => {
ElMessage({
message: h('p', null, [
h('i', { style: 'color: teal' }, msg),
]),
})
}
export { setErrorMessage }