Files
spark-store-abyss/pages/index.vue
jiwangyihao 621bc20edd feat: Add initial styles and pages for the application
- Created main.css to include Tailwind CSS and PrimeIcons.
- Added download.vue page with a simple heading.
- Implemented index.vue page structure with multiple sections and basic styling.

Co-authored-by: xudeyu444 <tai_365@qq.com>
Co-authored-by: Sylvanysc <1915657537@qq.com>
2025-05-12 00:00:26 +08:00

21 lines
326 B
Vue

<script setup lang="ts"></script>
<template>
<div class="page">
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
</div>
</template>
<style scoped>
section {
width: 100vw;
height: 100vh;
}
</style>