Created
December 23, 2023 10:58
-
-
Save isaacssemugenyi/3482fa0ce58ea2c6618e416b70cb9701 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
defineProps({ | |
msg: { | |
type: String, | |
required: true | |
} | |
}) | |
</script> | |
<template> | |
<div class="item"> | |
<div>Admin Component</div> | |
<h1>{{ msg }}</h1> | |
<div> | |
<slot></slot> | |
</div> | |
</div> | |
</template> | |
<style scoped> | |
.item { | |
width: 400px; | |
height: 20vh; | |
background-color: black; | |
color: white; | |
border: 1px solid grey; | |
border-radius: 1em; | |
padding: 1em; | |
margin-top: 2rem; | |
display: flex; | |
flex-direction: column; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment