23 lines
		
	
	
		
			403 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			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>
 |