x-control-panel/web-ui/vue-app/src/components/HelloWorld.vue

17 lines
199 B
Vue

<template>
<div class="hello">
<h1>{{ msg }}</h1>
</div>
</template>
<script setup lang="ts">
defineProps<{
msg: string
}>()
</script>
<style scoped>
.hello {
color: #42b883;
}
</style>