Files
dyf-vue-ui/src/views/index.vue

24 lines
445 B
Vue
Raw Normal View History

2025-06-26 15:29:07 +08:00
<template>
<div class="app-container home">
<el-row :gutter="20">
<el-col :sm="24" :lg="12" style="padding-left: 20px">
</el-col>
<el-col :sm="24" :lg="12" style="padding-left: 20px">
</el-col>
</el-row>
<el-divider />
</div>
</template>
<script setup name="Index" lang="ts">
const goTarget = (url: string) => {
window.open(url, '__blank');
};
</script>
<style lang="scss" scoped>
.home {
}
</style>