Sharkey/src/client/app/common/views/components/formula.vue

30 lines
497 B
Vue
Raw Normal View History

2018-11-16 10:03:52 +02:00
<template>
<span v-html="compiledFormula"></span>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: {
formula: {
type: String,
required: true
}
},
data() {
return {
compiledFormula: null
};
},
async created() {
const katex = await import('katex').then(m => m.default);
this.compiledFormula = katex.renderToString(this.formula);
2018-11-16 10:03:52 +02:00
}
});
</script>
<style>
@import "../../../../../../node_modules/katex/dist/katex.min.css";
</style>