gohttpdUi/src/App.vue

26 lines
677 B
Vue
Raw Normal View History

2021-12-07 14:36:07 +08:00
<script setup lang="ts">
// This starter template is using Vue 3 <script setup> SFCs
// Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup
import HelloWorld from './components/HelloWorld.vue'
2021-10-16 09:40:39 +08:00
</script>
2021-12-07 14:36:07 +08:00
<template>
2021-12-07 16:36:16 +08:00
<div>sss</div>
<div v:bg="blue-400 hover:blue-500 dark:blue-500 dark:hover:blue-600">
sssss
</div>
<img alt="Vue logo" src="./assets/logo.png">
2021-12-07 14:36:07 +08:00
<HelloWorld msg="Hello Vue 3 + TypeScript + Vite" />
</template>
2021-10-16 09:40:39 +08:00
2021-12-07 14:36:07 +08:00
<style>
2021-10-10 09:59:52 +08:00
#app {
2021-12-07 14:36:07 +08:00
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
2021-10-10 09:59:52 +08:00
}
</style>