[Client] Wrap formula component to split code

This commit is contained in:
syuilo 2018-11-16 18:31:25 +09:00
parent 23d8235197
commit cc7de853b4
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 31 additions and 11 deletions

View file

@ -0,0 +1,26 @@
<template>
<span 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
}
},
computed: {
compiledFormula(): any {
return katex.renderToString(this.formula);
}
}
});
</script>
<style>
@import "../../../../../../node_modules/katex/dist/katex.min.css";
</style>

View file

@ -1,26 +1,20 @@
<template>
<span v-html="compiledFormula"></span>
<x-formula :formula="formula"/>
</template>
<script lang="ts">
import Vue from 'vue';
import * as katex from 'katex';
export default Vue.extend({
components: {
XFormula: () => import('./formula-core.vue').then(m => m.default)
},
props: {
formula: {
type: String,
required: true
}
},
computed: {
compiledFormula(): any {
return katex.renderToString(this.formula);
}
}
});
</script>
<style>
@import "../../../../../../node_modules/katex/dist/katex.min.css";
</style>