Files
pqs-9100_client/frontend/src/views/home/index.vue

13 lines
236 B
Vue
Raw Normal View History

2024-08-22 16:36:00 +08:00
<template>
<div>
<el-button type="primary">按钮</el-button>
</div>
</template>
<script lang="ts" setup>
import { ref, onMounted } from "vue";
onMounted(() => {
console.log();
});
</script>
<style lang="scss" scoped></style>