press-ui
Version:
简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目
42 lines (38 loc) • 582 B
JavaScript
export const HIGHLIGHT_PROPS = {
sourceString: {
type: String,
default: '',
},
keywords: {
type: [String, Array],
default: '',
},
autoEscape: {
type: Boolean,
default: true,
},
caseSensitive: {
type: Boolean,
default: false,
},
tag: {
type: String,
default: 'div',
},
highlightTag: {
type: String,
default: 'span',
},
unhighlightTag: {
type: String,
default: 'span',
},
highlightClass: {
type: String,
default: '',
},
unhighlightClass: {
type: String,
default: '',
},
};