mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 19:53:09 +02:00
05b8111c19
* wip * wip * wip * Update page-editor.vue * wip * wip * wip * wip * wip * wip * wip * Update page-editor.variable.core.vue * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update aiscript.ts * wip * Update package.json * wip * wip * wip * wip * wip * Update page.vue * wip * wip * wip * wip * more info * wip fn * wip * wip * wip
35 lines
537 B
Vue
35 lines
537 B
Vue
<template>
|
|
<div class="">
|
|
<mfm :text="text" :is-note="false" :i="$store.state.i" :key="text"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
value: {
|
|
required: true
|
|
},
|
|
script: {
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
text: this.script.interpolate(this.value.text),
|
|
};
|
|
},
|
|
|
|
created() {
|
|
this.$watch('script.vars', () => {
|
|
this.text = this.script.interpolate(this.value.text);
|
|
}, { deep: true });
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
</style>
|