App.vue
527 Bytes
<template>
<div id="app">
<h1>Vue应用已启动</h1>
<p>如果您能看到这个页面,说明Vue应用正常运行</p>
<p>当前时间: {{ currentTime }}</p>
</div>
</template>
<script setup lang="ts">
import { onMounted, ref } from 'vue'
const currentTime = ref('')
onMounted(() => {
console.log('Apple经销商ERP系统前端应用已启动')
currentTime.value = new Date().toLocaleString()
})
</script>
<style>
#app {
height: 100vh;
font-family: Arial, sans-serif;
padding: 20px;
}
</style>