ui/src/App.vue

21 lines
397 B
Vue
Raw Normal View History

2022-04-09 03:44:38 +00:00
<script setup lang="ts">
2022-04-09 07:02:30 +00:00
import Home from './components/Home.vue'
2022-04-09 03:44:38 +00:00
</script>
<template>
2022-04-09 07:02:30 +00:00
<img alt="Vue logo" src="./assets/logo.png" />
<Home msg="CrystalMathy" />
2022-04-09 03:44:38 +00:00
</template>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
2022-04-09 04:34:42 +00:00
2022-04-09 03:44:38 +00:00
</style>