mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 08:33:09 +02:00
24 lines
448 B
Vue
24 lines
448 B
Vue
<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>
|