17 lines
228 B
Vue
17 lines
228 B
Vue
<template>
|
|
<div class="container">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
padding: 16px;
|
|
}
|
|
</style> |