短通知 + 上部消息

This commit is contained in:
limqhz
2022-12-12 18:05:49 +08:00
parent 44df516337
commit 0efe64d1bb
34 changed files with 1262 additions and 58 deletions

40
components/toast/props.js Normal file
View File

@@ -0,0 +1,40 @@
const props = {
direction: {
type: String,
value: 'row',
},
duration: {
type: Number,
value: 2000,
},
externalClasses: {
type: Array,
},
icon: {
type: String,
value: '',
},
message: {
type: String,
},
overlayProps: {
type: Object,
value: {},
},
placement: {
type: String,
value: 'middle',
},
preventScrollThrough: {
type: Boolean,
value: false,
},
showOverlay: {
type: Boolean,
value: false,
},
theme: {
type: String,
},
};
export default props;