iceshrimp-legacy/src/client/app/common/views/components/formula-core.vue

34 lines
572 B
Vue
Raw Normal View History

<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 {
2018-12-27 13:07:44 +01:00
return katex.renderToString(this.formula, {
2018-12-27 13:09:03 +01:00
throwOnError: false
2018-12-27 13:07:44 +01:00
} as any);
}
}
});
</script>
<style>
@import "../../../../../../node_modules/katex/dist/katex.min.css";
</style>