mirror of
https://github.com/spark-store-project/spark-store-abyss
synced 2025-12-18 05:11:36 +08:00
- 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>
21 lines
326 B
Vue
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>
|