mirror of
https://github.com/bitinflow/ui-old.git
synced 2026-03-13 13:45:57 +00:00
15 lines
191 B
Vue
15 lines
191 B
Vue
<template>
|
|
<div class="container mx-auto px-4 lg:px-16 py-8 space-y-8">
|
|
<slot/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Container"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |