看股功能更新

This commit is contained in:
2026-08-16 00:47:13 +08:00
parent fc86fe0674
commit 7c794cb342
7 changed files with 90 additions and 1 deletions

View File

@@ -1,7 +1,9 @@
<script setup lang="ts">
import { RouterLink } from 'vue-router';
// 首页:三大功能入口(看股 / 选股 / 回测)
import MarketOverview from '@/components/MarketOverview.vue';
// 首页:大盘行情总览 + 三大功能入口(看股 / 选股 / 回测)
const features = [
{
to: '/stocks',
@@ -29,6 +31,8 @@ const features = [
<template>
<div class="w-full max-w-5xl">
<MarketOverview />
<div class="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
<RouterLink
v-for="f in features"