Move more stuff to Pankow

This commit is contained in:
Johannes Zellner
2023-02-22 19:31:12 +01:00
parent e7b5cf7b23
commit debfd48236
8 changed files with 67 additions and 282 deletions
+26
View File
@@ -0,0 +1,26 @@
<template>
<div class="preview-panel">
<span>Preview for {{ item.name }}</span>
</div>
</template>
<script>
export default {
name: 'PreviewPanel',
props: {
item: Object
}
};
</script>
<style scoped>
.preview-panel {
min-width: 260px;
width: 20%;
padding: 0 30px;
}
</style>