Created
December 23, 2023 11:36
-
-
Save isaacssemugenyi/3ff34925e04bc286c1e7864c23211110 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>Distiguished Component</div> | |
<h1>{{ msg }}</h1> | |
<div> | |
<slot></slot> | |
</div> | |
</div> | |
</template> | |
<style scoped> | |
.item { | |
width: 400px; | |
height: 20vh; | |
background-color: firebrick; | |
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