mirror of
https://github.com/Estom/notes.git
synced 2026-07-10 15:46:20 +08:00
25 lines
336 B
Vue
25 lines
336 B
Vue
<template>
|
|
<div class="app">
|
|
<h1>Hello Vue!</h1>
|
|
<Person />
|
|
</div>
|
|
|
|
|
|
<main>
|
|
<TheWelcome />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Person from './components/Person.vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.app {
|
|
background-color: #ddd;
|
|
box-shadow: 0 0 10px;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
}
|
|
</style>
|