2025-03-01 22:18:18 +08:00
|
|
|
<script lang="ts" setup>
|
2025-03-01 23:10:44 +08:00
|
|
|
import LayoutContent from '@/views/welcome/components/welcome-content/index.vue';
|
|
|
|
import LayoutFooter from '@/views/welcome/components/welcome-footer/index.vue';
|
2025-03-01 22:18:18 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="particle">
|
|
|
|
<layout-content />
|
|
|
|
|
|
|
|
<layout-footer />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.particle {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2025-03-02 22:49:11 +08:00
|
|
|
background: url('@/assets/images/welcome/bg/bg-particle.png') no-repeat center;
|
2025-03-01 22:18:18 +08:00
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
</style>
|