24 lines
445 B
Vue
24 lines
445 B
Vue
|
|
<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>
|