mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-06 19:41:45 -04:00
14 lines
311 B
Vue
14 lines
311 B
Vue
<script>
|
|
import spelling from "../plugins/spelling";
|
|
|
|
export default {
|
|
mixins: [ spelling ],
|
|
props: {
|
|
text: { required: true },
|
|
},
|
|
render(h) {
|
|
return h('span', {domProps: { innerHTML: this.handleSpelling(this.text) }});
|
|
},
|
|
}
|
|
</script>
|