perf: supplement login interface documents and add configuration parameters (#4175)
parent
3c17f4e9f8
commit
5f41c51770
|
@ -13,7 +13,7 @@ import { version } from '../../package.json';
|
||||||
|
|
||||||
export default withPwa(
|
export default withPwa(
|
||||||
defineConfigWithTheme({
|
defineConfigWithTheme({
|
||||||
description: 'Vben Admin& 企业级管理系统框架',
|
description: 'Vben Admin & 企业级管理系统框架',
|
||||||
head: head(),
|
head: head(),
|
||||||
lang: 'zh',
|
lang: 'zh',
|
||||||
pwa: pwa(),
|
pwa: pwa(),
|
||||||
|
@ -284,6 +284,7 @@ function sidebarGuide(): DefaultTheme.SidebarItem[] {
|
||||||
{
|
{
|
||||||
text: '深入',
|
text: '深入',
|
||||||
items: [
|
items: [
|
||||||
|
{ link: 'in-depth/login', text: '登录' },
|
||||||
// { link: 'in-depth/layout', text: '布局' },
|
// { link: 'in-depth/layout', text: '布局' },
|
||||||
{ link: 'in-depth/theme', text: '主题' },
|
{ link: 'in-depth/theme', text: '主题' },
|
||||||
{ link: 'in-depth/access', text: '权限' },
|
{ link: 'in-depth/access', text: '权限' },
|
||||||
|
|
|
@ -0,0 +1,131 @@
|
||||||
|
# 登录
|
||||||
|
|
||||||
|
本文介绍如何去改造自己的应用程序登录页。
|
||||||
|
|
||||||
|
## 登录页面调整
|
||||||
|
|
||||||
|
如果你想调整登录页面的标题、描述和图标以及工具栏,你可以通过配置 `AuthPageLayout` 组件的 `props` 参数来实现。
|
||||||
|
|
||||||
|
![login](/guide/login.png)
|
||||||
|
|
||||||
|
只需要在应用下的 `src/router/routes/core.ts` 内,配置`AuthPageLayout`的 `props`参数即可:
|
||||||
|
|
||||||
|
```ts {4-8}
|
||||||
|
{
|
||||||
|
component: AuthPageLayout,
|
||||||
|
props: {
|
||||||
|
sloganImage: "xxx/xxx.png",
|
||||||
|
pageTitle: "开箱即用的大型中后台管理系统",
|
||||||
|
pageDescription: "工程化、高性能、跨组件库的前端模版",
|
||||||
|
toolbar: true,
|
||||||
|
toolbarList: () => ['color', 'language', 'layout', 'theme'],
|
||||||
|
}
|
||||||
|
// ...
|
||||||
|
},
|
||||||
|
```
|
||||||
|
|
||||||
|
::: tip
|
||||||
|
|
||||||
|
如果这些配置不能满足你的需求,你可以自行实现登录页面。直接实现自己的 `AuthPageLayout`即可。
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
## 登录表单调整
|
||||||
|
|
||||||
|
如果你想调整登录表单的相关内容,你可以在应用下的 `src/views/_core/authentication/login.vue` 内,配置`AuthenticationLogin` 组件参数即可:
|
||||||
|
|
||||||
|
```vue
|
||||||
|
<AuthenticationLogin
|
||||||
|
:loading="authStore.loginLoading"
|
||||||
|
password-placeholder="123456"
|
||||||
|
username-placeholder="vben"
|
||||||
|
@submit="authStore.authLogin"
|
||||||
|
/>
|
||||||
|
```
|
||||||
|
|
||||||
|
::: details AuthenticationLogin 组件参数
|
||||||
|
|
||||||
|
```ts
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @zh_CN 验证码登录路径
|
||||||
|
*/
|
||||||
|
codeLoginPath?: string;
|
||||||
|
/**
|
||||||
|
* @zh_CN 忘记密码路径
|
||||||
|
*/
|
||||||
|
forgetPasswordPath?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 是否处于加载处理状态
|
||||||
|
*/
|
||||||
|
loading?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 密码占位符
|
||||||
|
*/
|
||||||
|
passwordPlaceholder?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 二维码登录路径
|
||||||
|
*/
|
||||||
|
qrCodeLoginPath?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 注册路径
|
||||||
|
*/
|
||||||
|
registerPath?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 是否显示验证码登录
|
||||||
|
*/
|
||||||
|
showCodeLogin?: boolean;
|
||||||
|
/**
|
||||||
|
* @zh_CN 是否显示忘记密码
|
||||||
|
*/
|
||||||
|
showForgetPassword?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 是否显示二维码登录
|
||||||
|
*/
|
||||||
|
showQrcodeLogin?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 是否显示注册按钮
|
||||||
|
*/
|
||||||
|
showRegister?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 是否显示记住账号
|
||||||
|
*/
|
||||||
|
showRememberMe?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 是否显示第三方登录
|
||||||
|
*/
|
||||||
|
showThirdPartyLogin?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 登录框子标题
|
||||||
|
*/
|
||||||
|
subTitle?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 登录框标题
|
||||||
|
*/
|
||||||
|
title?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @zh_CN 用户名占位符
|
||||||
|
*/
|
||||||
|
usernamePlaceholder?: string;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: tip
|
||||||
|
|
||||||
|
如果这些配置不能满足你的需求,你可以自行实现登录表单及相关登录逻辑。
|
||||||
|
|
||||||
|
:::
|
Binary file not shown.
After Width: | Height: | Size: 469 KiB |
|
@ -5,6 +5,7 @@ export default defineBuildConfig({
|
||||||
declaration: true,
|
declaration: true,
|
||||||
entries: [
|
entries: [
|
||||||
'src/index',
|
'src/index',
|
||||||
|
'src/store',
|
||||||
'src/constants/index',
|
'src/constants/index',
|
||||||
'src/utils/index',
|
'src/utils/index',
|
||||||
'src/color/index',
|
'src/color/index',
|
||||||
|
|
|
@ -44,6 +44,11 @@
|
||||||
"types": "./src/cache/index.ts",
|
"types": "./src/cache/index.ts",
|
||||||
"development": "./src/cache/index.ts",
|
"development": "./src/cache/index.ts",
|
||||||
"default": "./dist/cache/index.mjs"
|
"default": "./dist/cache/index.mjs"
|
||||||
|
},
|
||||||
|
"./store": {
|
||||||
|
"types": "./src/store.ts",
|
||||||
|
"development": "./src/store.ts",
|
||||||
|
"default": "./dist/store.mjs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
@ -56,6 +61,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ctrl/tinycolor": "^4.1.0",
|
"@ctrl/tinycolor": "^4.1.0",
|
||||||
|
"@tanstack/vue-store": "^0.5.5",
|
||||||
"@vue/shared": "^3.4.37",
|
"@vue/shared": "^3.4.37",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"defu": "^6.1.4",
|
"defu": "^6.1.4",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
export * from './cache';
|
export * from './cache';
|
||||||
export * from './color';
|
export * from './color';
|
||||||
export * from './constants';
|
export * from './constants';
|
||||||
|
export * from './store';
|
||||||
export * from './utils';
|
export * from './utils';
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
export * from '@tanstack/vue-store';
|
|
@ -116,7 +116,6 @@ class PreferenceManager {
|
||||||
this.updatePreferences({
|
this.updatePreferences({
|
||||||
theme: { mode: isDark ? 'dark' : 'light' },
|
theme: { mode: isDark ? 'dark' : 'light' },
|
||||||
});
|
});
|
||||||
// updateCSSVariables(this.state);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,26 @@ import { preferences, usePreferences } from '@vben/preferences';
|
||||||
|
|
||||||
import AuthenticationFormView from './form.vue';
|
import AuthenticationFormView from './form.vue';
|
||||||
import SloganIcon from './icons/slogan.vue';
|
import SloganIcon from './icons/slogan.vue';
|
||||||
|
import Toolbar from './toolbar.vue';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
pageTitle?: string;
|
||||||
|
pageDescription?: string;
|
||||||
|
sloganImage?: string;
|
||||||
|
toolbar?: boolean;
|
||||||
|
toolbarList?: ('color' | 'language' | 'layout' | 'theme')[];
|
||||||
|
}
|
||||||
|
|
||||||
defineOptions({ name: 'Authentication' });
|
defineOptions({ name: 'Authentication' });
|
||||||
|
|
||||||
|
withDefaults(defineProps<Props>(), {
|
||||||
|
pageDescription: '',
|
||||||
|
pageTitle: '',
|
||||||
|
sloganImage: '',
|
||||||
|
toolbar: true,
|
||||||
|
toolbarList: () => ['color', 'language', 'layout', 'theme'],
|
||||||
|
});
|
||||||
|
|
||||||
const { authPanelCenter, authPanelLeft, authPanelRight } = usePreferences();
|
const { authPanelCenter, authPanelLeft, authPanelRight } = usePreferences();
|
||||||
const appName = computed(() => preferences.app.name);
|
const appName = computed(() => preferences.app.name);
|
||||||
const logoSource = computed(() => preferences.logo.source);
|
const logoSource = computed(() => preferences.logo.source);
|
||||||
|
@ -21,7 +38,11 @@ const logoSource = computed(() => preferences.logo.source);
|
||||||
v-if="authPanelLeft"
|
v-if="authPanelLeft"
|
||||||
class="min-h-full w-2/5"
|
class="min-h-full w-2/5"
|
||||||
transition-name="slide-left"
|
transition-name="slide-left"
|
||||||
/>
|
>
|
||||||
|
<template v-if="toolbar" #toolbar>
|
||||||
|
<Toolbar :toolbar-list="toolbarList" />
|
||||||
|
</template>
|
||||||
|
</AuthenticationFormView>
|
||||||
|
|
||||||
<!-- 头部 Logo 和应用名称 -->
|
<!-- 头部 Logo 和应用名称 -->
|
||||||
<div class="absolute left-0 top-0 z-10 flex flex-1">
|
<div class="absolute left-0 top-0 z-10 flex flex-1">
|
||||||
|
@ -41,12 +62,19 @@ const logoSource = computed(() => preferences.logo.source);
|
||||||
<div class="absolute inset-0 h-full w-full bg-[#070709]">
|
<div class="absolute inset-0 h-full w-full bg-[#070709]">
|
||||||
<div class="login-background absolute left-0 top-0 size-full"></div>
|
<div class="login-background absolute left-0 top-0 size-full"></div>
|
||||||
<div class="flex-col-center -enter-x mr-20 h-full">
|
<div class="flex-col-center -enter-x mr-20 h-full">
|
||||||
<SloganIcon :alt="appName" class="animate-float h-64 w-2/5" />
|
<template v-if="sloganImage">
|
||||||
|
<img
|
||||||
|
:alt="appName"
|
||||||
|
:src="sloganImage"
|
||||||
|
class="animate-float h-64 w-2/5"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<SloganIcon v-else :alt="appName" class="animate-float h-64 w-2/5" />
|
||||||
<div class="text-1xl mt-6 font-sans text-white lg:text-2xl">
|
<div class="text-1xl mt-6 font-sans text-white lg:text-2xl">
|
||||||
{{ $t('authentication.pageTitle') }}
|
{{ pageTitle || $t('authentication.pageTitle') }}
|
||||||
</div>
|
</div>
|
||||||
<div class="dark:text-muted-foreground mt-2 text-white/60">
|
<div class="dark:text-muted-foreground mt-2 text-white/60">
|
||||||
{{ $t('authentication.pageDesc') }}
|
{{ pageDescription || $t('authentication.pageDesc') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -57,14 +85,22 @@ const logoSource = computed(() => preferences.logo.source);
|
||||||
<div class="login-background absolute left-0 top-0 size-full"></div>
|
<div class="login-background absolute left-0 top-0 size-full"></div>
|
||||||
<AuthenticationFormView
|
<AuthenticationFormView
|
||||||
class="md:bg-background shadow-primary/10 w-full rounded-3xl pb-20 shadow-2xl md:w-2/3 lg:w-1/2 xl:w-[36%]"
|
class="md:bg-background shadow-primary/10 w-full rounded-3xl pb-20 shadow-2xl md:w-2/3 lg:w-1/2 xl:w-[36%]"
|
||||||
/>
|
>
|
||||||
|
<template v-if="toolbar" #toolbar>
|
||||||
|
<Toolbar :toolbar-list="toolbarList" />
|
||||||
|
</template>
|
||||||
|
</AuthenticationFormView>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 右侧认证面板 -->
|
<!-- 右侧认证面板 -->
|
||||||
<AuthenticationFormView
|
<AuthenticationFormView
|
||||||
v-if="authPanelRight"
|
v-if="authPanelRight"
|
||||||
class="min-h-full w-2/5 flex-1"
|
class="min-h-full w-2/5 flex-1"
|
||||||
/>
|
>
|
||||||
|
<template v-if="toolbar" #toolbar>
|
||||||
|
<Toolbar :toolbar-list="toolbarList" />
|
||||||
|
</template>
|
||||||
|
</AuthenticationFormView>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
import { preferences } from '@vben/preferences';
|
import { preferences } from '@vben/preferences';
|
||||||
|
|
||||||
import { Copyright } from '../basic/copyright';
|
import { Copyright } from '../basic/copyright';
|
||||||
import Toolbar from './toolbar.vue';
|
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: 'AuthenticationFormView',
|
name: 'AuthenticationFormView',
|
||||||
|
@ -14,9 +13,7 @@ defineOptions({
|
||||||
class="flex-col-center bg-background-deep relative px-6 py-10 lg:flex-initial lg:px-8"
|
class="flex-col-center bg-background-deep relative px-6 py-10 lg:flex-initial lg:px-8"
|
||||||
>
|
>
|
||||||
<!-- Toolbar Slot -->
|
<!-- Toolbar Slot -->
|
||||||
<slot name="toolbar">
|
<slot name="toolbar"> </slot>
|
||||||
<Toolbar />
|
|
||||||
</slot>
|
|
||||||
|
|
||||||
<!-- Router View with Transition and KeepAlive -->
|
<!-- Router View with Transition and KeepAlive -->
|
||||||
<RouterView v-slot="{ Component, route }">
|
<RouterView v-slot="{ Component, route }">
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { computed } from 'vue';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AuthenticationColorToggle,
|
AuthenticationColorToggle,
|
||||||
AuthenticationLayoutToggle,
|
AuthenticationLayoutToggle,
|
||||||
|
@ -6,22 +8,39 @@ import {
|
||||||
ThemeToggle,
|
ThemeToggle,
|
||||||
} from '../widgets';
|
} from '../widgets';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
toolbarList?: ('color' | 'language' | 'layout' | 'theme')[];
|
||||||
|
}
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: 'AuthenticationToolbar',
|
name: 'AuthenticationToolbar',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
|
toolbarList: () => ['color', 'language', 'layout', 'theme'],
|
||||||
|
});
|
||||||
|
|
||||||
|
const showColor = computed(() => props.toolbarList.includes('color'));
|
||||||
|
const showLayout = computed(() => props.toolbarList.includes('layout'));
|
||||||
|
const showLanguage = computed(() => props.toolbarList.includes('language'));
|
||||||
|
const showTheme = computed(() => props.toolbarList.includes('theme'));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="flex-center bg-background dark:bg-accent absolute right-2 top-4 rounded-3xl px-3 py-1"
|
:class="{
|
||||||
|
'bg-background dark:bg-accent rounded-3xl px-3 py-1':
|
||||||
|
toolbarList.length > 1,
|
||||||
|
}"
|
||||||
|
class="flex-center absolute right-2 top-4"
|
||||||
>
|
>
|
||||||
<!-- Only show on medium and larger screens -->
|
<!-- Only show on medium and larger screens -->
|
||||||
<div class="hidden md:flex">
|
<div class="hidden md:flex">
|
||||||
<AuthenticationColorToggle />
|
<AuthenticationColorToggle v-if="showColor" />
|
||||||
<AuthenticationLayoutToggle />
|
<AuthenticationLayoutToggle v-if="showLayout" />
|
||||||
</div>
|
</div>
|
||||||
<!-- Always show Language and Theme toggles -->
|
<!-- Always show Language and Theme toggles -->
|
||||||
<LanguageToggle />
|
<LanguageToggle v-if="showLanguage" />
|
||||||
<ThemeToggle />
|
<ThemeToggle v-if="showTheme" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -139,7 +139,7 @@ watch(
|
||||||
async (val) => {
|
async (val) => {
|
||||||
if (val) {
|
if (val) {
|
||||||
await updateWatermark({
|
await updateWatermark({
|
||||||
content: `${preferences.app.name} 用户名: ${userStore.userInfo?.username}`,
|
content: `${userStore.userInfo?.username}`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,50 +0,0 @@
|
||||||
import { ref } from 'vue';
|
|
||||||
|
|
||||||
type El = HTMLElement | null | undefined;
|
|
||||||
|
|
||||||
export function useTabViewScroll(scrollDistance: number = 150) {
|
|
||||||
const scrollbarEl = ref<El>(null);
|
|
||||||
const scrollViewportEl = ref<El>(null);
|
|
||||||
|
|
||||||
function setScrollBarEl(el: El) {
|
|
||||||
scrollbarEl.value = el;
|
|
||||||
}
|
|
||||||
|
|
||||||
function setScrollViewEl(el: El) {
|
|
||||||
scrollViewportEl.value = el;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getScrollClientWidth() {
|
|
||||||
if (!scrollbarEl.value || !scrollViewportEl.value) return {};
|
|
||||||
|
|
||||||
const scrollbarWidth = scrollbarEl.value.clientWidth;
|
|
||||||
const scrollViewWidth = scrollViewportEl.value.clientWidth;
|
|
||||||
|
|
||||||
return {
|
|
||||||
scrollbarWidth,
|
|
||||||
scrollViewWidth,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function scrollDirection(
|
|
||||||
direction: 'left' | 'right',
|
|
||||||
distance: number = scrollDistance,
|
|
||||||
) {
|
|
||||||
const { scrollbarWidth, scrollViewWidth } = getScrollClientWidth();
|
|
||||||
|
|
||||||
if (!scrollbarWidth || !scrollViewWidth) return;
|
|
||||||
|
|
||||||
if (scrollbarWidth > scrollViewWidth) return;
|
|
||||||
|
|
||||||
scrollViewportEl.value?.scrollBy({
|
|
||||||
behavior: 'smooth',
|
|
||||||
left: direction === 'left' ? -distance : +distance,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
scrollDirection,
|
|
||||||
setScrollBarEl,
|
|
||||||
setScrollViewEl,
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,6 +1,3 @@
|
||||||
<script lang="ts" setup>
|
|
||||||
defineOptions({ name: 'IFrameView' });
|
|
||||||
</script>
|
|
||||||
<template>
|
<template>
|
||||||
<div></div>
|
<div></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -671,6 +671,9 @@ importers:
|
||||||
'@ctrl/tinycolor':
|
'@ctrl/tinycolor':
|
||||||
specifier: 4.1.0
|
specifier: 4.1.0
|
||||||
version: 4.1.0
|
version: 4.1.0
|
||||||
|
'@tanstack/vue-store':
|
||||||
|
specifier: ^0.5.5
|
||||||
|
version: 0.5.5(vue@3.4.37(typescript@5.5.4))
|
||||||
'@vue/shared':
|
'@vue/shared':
|
||||||
specifier: ^3.4.37
|
specifier: ^3.4.37
|
||||||
version: 3.4.38
|
version: 3.4.38
|
||||||
|
@ -3375,6 +3378,7 @@ packages:
|
||||||
|
|
||||||
'@ls-lint/ls-lint@2.2.3':
|
'@ls-lint/ls-lint@2.2.3':
|
||||||
resolution: {integrity: sha512-ekM12jNm/7O2I/hsRv9HvYkRdfrHpiV1epVuI2NP+eTIcEgdIdKkKCs9KgQydu/8R5YXTov9aHdOgplmCHLupw==}
|
resolution: {integrity: sha512-ekM12jNm/7O2I/hsRv9HvYkRdfrHpiV1epVuI2NP+eTIcEgdIdKkKCs9KgQydu/8R5YXTov9aHdOgplmCHLupw==}
|
||||||
|
cpu: [x64, arm64, s390x]
|
||||||
os: [darwin, linux, win32]
|
os: [darwin, linux, win32]
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
@ -3823,9 +3827,21 @@ packages:
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
tailwindcss: '>=3.0.0 || insiders'
|
tailwindcss: '>=3.0.0 || insiders'
|
||||||
|
|
||||||
|
'@tanstack/store@0.5.5':
|
||||||
|
resolution: {integrity: sha512-EOSrgdDAJExbvRZEQ/Xhh9iZchXpMN+ga1Bnk8Nmygzs8TfiE6hbzThF+Pr2G19uHL6+DTDTHhJ8VQiOd7l4tA==}
|
||||||
|
|
||||||
'@tanstack/virtual-core@3.9.0':
|
'@tanstack/virtual-core@3.9.0':
|
||||||
resolution: {integrity: sha512-Saga7/QRGej/IDCVP5BgJ1oDqlDT2d9rQyoflS3fgMS8ntJ8JGw/LBqK2GorHa06+VrNFc0tGz65XQHJQJetFQ==}
|
resolution: {integrity: sha512-Saga7/QRGej/IDCVP5BgJ1oDqlDT2d9rQyoflS3fgMS8ntJ8JGw/LBqK2GorHa06+VrNFc0tGz65XQHJQJetFQ==}
|
||||||
|
|
||||||
|
'@tanstack/vue-store@0.5.5':
|
||||||
|
resolution: {integrity: sha512-j+CDrxVhtQQNOjWzLmCqJeDwmmTAQGvEaNbLr1uPJ9rxJITodJtFNdBFj7l+Nd5o34v2ayEv64Ugh6+1BtuGNg==}
|
||||||
|
peerDependencies:
|
||||||
|
'@vue/composition-api': ^1.2.1
|
||||||
|
vue: 3.4.37
|
||||||
|
peerDependenciesMeta:
|
||||||
|
'@vue/composition-api':
|
||||||
|
optional: true
|
||||||
|
|
||||||
'@tanstack/vue-virtual@3.9.0':
|
'@tanstack/vue-virtual@3.9.0':
|
||||||
resolution: {integrity: sha512-MVJhQh57OR3wg2pWL/25IN1/nITFNnpFaz4gOvRCqnxhsH0WRePBBKvixOaFTgiyYfmrjFbb4d0nRMTvsjZZdQ==}
|
resolution: {integrity: sha512-MVJhQh57OR3wg2pWL/25IN1/nITFNnpFaz4gOvRCqnxhsH0WRePBBKvixOaFTgiyYfmrjFbb4d0nRMTvsjZZdQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -12638,8 +12654,16 @@ snapshots:
|
||||||
postcss-selector-parser: 6.0.10
|
postcss-selector-parser: 6.0.10
|
||||||
tailwindcss: 3.4.10
|
tailwindcss: 3.4.10
|
||||||
|
|
||||||
|
'@tanstack/store@0.5.5': {}
|
||||||
|
|
||||||
'@tanstack/virtual-core@3.9.0': {}
|
'@tanstack/virtual-core@3.9.0': {}
|
||||||
|
|
||||||
|
'@tanstack/vue-store@0.5.5(vue@3.4.37(typescript@5.5.4))':
|
||||||
|
dependencies:
|
||||||
|
'@tanstack/store': 0.5.5
|
||||||
|
vue: 3.4.37(typescript@5.5.4)
|
||||||
|
vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
|
||||||
|
|
||||||
'@tanstack/vue-virtual@3.9.0(vue@3.4.37(typescript@5.5.4))':
|
'@tanstack/vue-virtual@3.9.0(vue@3.4.37(typescript@5.5.4))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tanstack/virtual-core': 3.9.0
|
'@tanstack/virtual-core': 3.9.0
|
||||||
|
|
Loading…
Reference in New Issue