mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-14 08:15:26 +00:00
24 lines
323 B
Vue
24 lines
323 B
Vue
<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>
|