You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
364 B
27 lines
364 B
|
3 years ago
|
export const loadFontFace = {
|
||
|
|
family: {
|
||
|
|
type: String,
|
||
|
|
required: true
|
||
|
|
},
|
||
|
|
source: {
|
||
|
|
type: String,
|
||
|
|
required: true
|
||
|
|
},
|
||
|
|
desc: {
|
||
|
|
type: Object,
|
||
|
|
required: false
|
||
|
|
},
|
||
|
|
success: {
|
||
|
|
type: Function,
|
||
|
|
required: false
|
||
|
|
},
|
||
|
|
fail: {
|
||
|
|
type: Function,
|
||
|
|
required: false
|
||
|
|
},
|
||
|
|
complete: {
|
||
|
|
type: Function,
|
||
|
|
required: false
|
||
|
|
}
|
||
|
|
}
|