vite-start/src/App.vue
taolin 7c701e6ca8
Some checks reported errors
continuous-integration/drone/push Build encountered an error
fix: px
2022-07-22 16:21:35 +08:00

23 lines
403 B
Vue

<script lang="ts">
import { defineComponent } from "vue";
import { hello } from "@/utils/index"
export default defineComponent({
mounted() {
hello()
}
});
</script>
<template>
<router-view></router-view>
</template>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
</style>