Skip to content

Instantly share code, notes, and snippets.

@isaacssemugenyi
Created December 23, 2023 10:58
Show Gist options
  • Save isaacssemugenyi/3482fa0ce58ea2c6618e416b70cb9701 to your computer and use it in GitHub Desktop.
Save isaacssemugenyi/3482fa0ce58ea2c6618e416b70cb9701 to your computer and use it in GitHub Desktop.
<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