filebrowser/_assets/src/components/Editor.vue

19 lines
306 B
Vue
Raw Normal View History

<template>
<form id="editor">
<h2 v-if="editor.type == 'complete'">Metadata</h2>
<h2 v-if="editor.type == 'complete'">Body</h2>
</form>
</template>
<script>
export default {
name: 'editor',
data: function () {
return window.info.req.data
},
methods: {
}
}
</script>