mirror of https://github.com/vuejs/vitepress
parent
02c62f7875
commit
119da5582f
@ -0,0 +1,13 @@
|
|||||||
|
import { defineComponent, h } from 'vue'
|
||||||
|
|
||||||
|
export const LocalSearchBoxItem = defineComponent({
|
||||||
|
props: {
|
||||||
|
content: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
return h('span', { innerHTML: this.content })
|
||||||
|
}
|
||||||
|
})
|
Loading…
Reference in new issue