feat(sponsorList): add 'Designed by' remark component

This commit introduces a new 'DesignedRemark' component to display an attribution link.

- Adds the Pacifico font for custom styling of the remark.
- Creates and registers the global `DesignedRemark` Vue component.
- Integrates the component into the mobile sponsor list page.
This commit is contained in:
xiaomai
2025-11-13 08:30:34 +08:00
parent ba744f3381
commit 2e5ba93083
2 changed files with 36 additions and 6 deletions

View File

@@ -7,6 +7,10 @@ const SponsorCard = {
template: "#sponsor-card-template",
};
const DesignedRemark = {
template: "#designed-remark-template",
};
const app = createApp({
setup() {
const eventTitle = ref("");
@@ -291,5 +295,6 @@ const app = createApp({
},
});
app.component("designed-remark", DesignedRemark); // 全局注册
app.component("sponsor-card", SponsorCard); // 全局注册
app.mount("#app");