mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 09:33:09 +02:00
40 lines
600 B
Vue
40 lines
600 B
Vue
|
<template>
|
||
|
<div class="voxdxuby">
|
||
|
<XNote v-if="note" v-model:note="note" :key="note.id"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue';
|
||
|
import XNote from '@/components/note.vue';
|
||
|
import * as os from '@/os';
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: {
|
||
|
XNote
|
||
|
},
|
||
|
props: {
|
||
|
value: {
|
||
|
required: true
|
||
|
},
|
||
|
hpml: {
|
||
|
required: true
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
note: null,
|
||
|
};
|
||
|
},
|
||
|
async mounted() {
|
||
|
this.note = await os.api('notes/show', { noteId: this.value.note });
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.voxdxuby {
|
||
|
margin: 1em 0;
|
||
|
}
|
||
|
</style>
|