20 lines
332 B
Vue
20 lines
332 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { ref } from 'vue'
|
||
|
|
|
||
|
|
const message = ref('欢迎使用 Vue 项目模板')
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="home">
|
||
|
|
<h1>{{ message }}</h1>
|
||
|
|
<el-button type="primary">Element Plus 按钮</el-button>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.home {
|
||
|
|
padding: 20px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
</style>
|