mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 03:53:09 +02:00
20 lines
294 B
Vue
20 lines
294 B
Vue
<template>
|
|
<x-formula :formula="formula"/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
XFormula: () => import('./formula-core.vue').then(m => m.default)
|
|
},
|
|
|
|
props: {
|
|
formula: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
});
|
|
</script>
|