fix: 支付防抖

This commit is contained in:
2025-12-22 18:51:28 +08:00
parent 8be21f8307
commit 37192b0ba4
4 changed files with 6 additions and 34 deletions

View File

@@ -16,7 +16,6 @@ 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);
@@ -25,7 +24,6 @@ export function createApp() {
pinia.use(createUnistorage());
app.use(pinia);
app.use(share);
app.use(noclick);
return {
app,