13 lines
236 B
Vue
13 lines
236 B
Vue
|
|
<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>
|