add rotate captcha

This commit is contained in:
landaiqing
2024-08-12 22:24:16 +08:00
parent fea8b9df2d
commit 431e690f02
18 changed files with 257 additions and 38 deletions

View File

@@ -5,9 +5,12 @@ import '@/assets/styles/global.scss';
import i18n from "@/locales/index.ts";
import {setupStore} from "@/store/pinia.ts";
import router from "@/router/router.ts";
import "go-captcha-vue/dist/style.css"
import GoCaptcha from "go-captcha-vue"
const app = createApp(App);
setupStore(app);
app.use(router);
app.use(i18n);
app.use(GoCaptcha)
app.mount('#app');