PronounsPage/components/Spelling.vue
2021-02-01 23:07:30 +01:00

14 lines
351 B
Vue

<script>
import spelling from "../plugins/spelling";
export default {
mixins: [ spelling ],
props: {
text: {},
},
render(h) {
return h('span', {domProps: { innerHTML: this.handleSpelling(this.text !== undefined ? this.text : this.$slots.default[0].text) }});
},
}
</script>