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

27 lines
424 B
Vue
Raw Normal View History

2018-11-16 08:03:52 +00:00
<template>
<span v-html="compiledFormula"></span>
</template>
<script lang="ts">
import Vue from 'vue';
import * as katex from 'katex';
2018-11-16 08:03:52 +00:00
export default Vue.extend({
props: {
formula: {
type: String,
required: true
}
},
computed: {
compiledFormula(): any {
return katex.renderToString(this.formula);
}
2018-11-16 08:03:52 +00:00
}
});
</script>
<style>
@import "../../../../../../node_modules/katex/dist/katex.min.css";
</style>