remove katex

This commit is contained in:
syuilo 2023-01-11 08:58:13 +09:00
parent 90e2186872
commit e51432a461
7 changed files with 4 additions and 110 deletions

View file

@ -1,24 +0,0 @@
<template>
<XFormula :formula="formula" :block="block"/>
</template>
<script lang="ts">
import { defineComponent, defineAsyncComponent } from 'vue';
import * as os from '@/os';
export default defineComponent({
components: {
XFormula: defineAsyncComponent(() => import('@/components/MkFormulaCore.vue')),
},
props: {
formula: {
type: String,
required: true,
},
block: {
type: Boolean,
required: true,
},
},
});
</script>