blob: 45b27f902699dd8a9fa06c867e1ca3bf7c81e7a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<template>
<div v-if="block" v-html="compiledFormula"></div>
<span v-else v-html="compiledFormula"></span>
</template>
<script lang="ts">
import Vue from 'vue';
import * as katex from 'katex';
export default Vue.extend({
props: {
formula: {
type: String,
required: true
},
block: {
type: Boolean,
required: true
}
},
computed: {
compiledFormula(): any {
return katex.renderToString(this.formula, {
throwOnError: false
} as any);
}
}
});
</script>
<style>
@import "../../../node_modules/katex/dist/katex.min.css";
</style>
|