Productos view

This commit is contained in:
2024-09-22 01:31:21 -03:00
parent 39379b67c3
commit 9dff07dc0a
13 changed files with 1602 additions and 103 deletions

View File

@@ -0,0 +1,16 @@
<script setup>
</script>
<template>
<div id="app-layout">
<slot></slot>
</div>
</template>
<style scoped lang="scss">
#app-layout {
padding: 1em 2em;
height: calc(100vh - var(--header-height));
}
</style>