2017-06-29 20:46:08 +00:00
|
|
|
<template>
|
|
|
|
<form id="editor">
|
|
|
|
<h2 v-if="editor.type == 'complete'">Metadata</h2>
|
2017-06-30 17:03:08 +00:00
|
|
|
|
|
|
|
<h2 v-if="editor.type == 'complete'">Body</h2>
|
2017-06-29 20:46:08 +00:00
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'editor',
|
|
|
|
data: function () {
|
|
|
|
return window.info.req.data
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|