Simplifying media manager

parent 10f1f624
<template> <template>
<div> <div>
<media-list></media-list> <router-view></router-view>
</div> </div>
</template> </template>
<script> <script>
import UploadZone from './UploadZone.vue';
import MediaList from './MediaList.vue';
export default { export default {
components: {
'upload-zone': UploadZone,
'media-list': MediaList,
},
data() { data() {
return {} return {}
}, },
methods: {}, methods: {},
mounted() { mounted() {}
}
} }
</script> </script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment