🚧 Lays ground-work for the Edit Item modal form

This commit is contained in:
Alicia Sykes
2021-10-16 15:32:18 +01:00
parent 19ba9dc16d
commit b9b9c30713
5 changed files with 111 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
<template>
<span>Item Editor</span>
</template>
<script>
export default {
name: 'EditSection',
data() {
return {};
},
props: {},
computed: {},
components: {},
methods: {},
};
</script>
<style scoped lang="scss">
@import '@/styles/style-helpers.scss';
@import '@/styles/media-queries.scss';
</style>