feat: 支付的时候防止重复点击

This commit is contained in:
2025-12-01 15:15:48 +08:00
parent 9632f5c065
commit 172bae663b
4 changed files with 34 additions and 3 deletions

View File

@@ -16,6 +16,8 @@ app.$mount();
import { createSSRApp } from "vue";
import * as Pinia from "pinia";
import { createUnistorage } from "pinia-plugin-unistorage";
import noclick from "./utils/noclick";
export function createApp() {
const app = createSSRApp(App);
const pinia = Pinia.createPinia();
@@ -23,10 +25,11 @@ export function createApp() {
pinia.use(createUnistorage());
app.use(pinia);
app.use(share);
app.use(noclick);
return {
app,
pinia,
};
}
// #endif
// #endif