Compare commits

...

10 Commits

Author SHA1 Message Date
jxxghp
e4a0b29162 更新 package.json 2023-09-16 16:38:02 +08:00
jxxghp
09234296f4 Merge pull request #37 from cikezhu/main 2023-09-16 16:37:24 +08:00
叮叮当
679228c8a7 修复keep-alive 2023-09-16 16:28:40 +08:00
jxxghp
a752e19878 roolback 2023-09-15 11:23:35 +08:00
jxxghp
0880c0e3b3 v1.2.1 2023-09-15 11:14:25 +08:00
jxxghp
948e65d383 v1.2.0-1 2023-09-14 17:22:23 +08:00
jxxghp
7cce57496d v1.2.0-1 2023-09-14 16:12:09 +08:00
jxxghp
e54e851f61 fix ios菜单点击两次 2023-09-14 16:11:44 +08:00
jxxghp
17020cf62d fix text 2023-09-14 10:39:35 +08:00
jxxghp
0c7be28eaa fix tooltip 2023-09-14 10:11:11 +08:00
7 changed files with 22 additions and 21 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "moviepilot",
"version": "1.2.0",
"version": "1.2.2",
"private": true,
"scripts": {
"dev": "vite --host",

View File

@@ -17,18 +17,16 @@
// This mixin is inspired from vuetify for adding hover styles via before pseudo element
@mixin before-pseudo() {
position: relative;
@media (hover) {
&::before {
position: absolute;
background: currentcolor;
block-size: 100%;
border-radius: inherit;
content: "";
inline-size: 100%;
inset: 0;
opacity: 0;
pointer-events: none;
}
&::before {
position: absolute;
background: currentcolor;
block-size: 100%;
border-radius: inherit;
content: "";
inline-size: 100%;
inset: 0;
opacity: 0;
pointer-events: none;
}
}

View File

@@ -8,7 +8,6 @@
// This mixin is inspired from vuetify for adding hover styles via before pseudo element
@mixin before-pseudo() {
position: relative;
&::before {
position: absolute;
border-radius: inherit;

View File

@@ -70,12 +70,15 @@ function handleNavScroll(evt: Event) {
<slot name="nav-items" :update-is-vertical-nav-scrolled="updateIsVerticalNavScrolled">
<PerfectScrollbar
tag="ul"
class="nav-items"
class="nav-items d-none d-lg-block"
:options="{ wheelPropagation: false }"
@ps-scroll-y="handleNavScroll"
>
<slot />
</PerfectScrollbar>
<ul class="nav-items d-lg-none overflow-auto">
<slot />
</ul>
</slot>
<slot name="after-nav-items" />

View File

@@ -41,6 +41,6 @@ onBeforeMount(async () => {
<template>
<VApp>
<RouterView :key="route.fullPath" />
<RouterView />
</VApp>
</template>

View File

@@ -6,14 +6,14 @@ import DefaultLayoutWithVerticalNav from './components/DefaultLayoutWithVertical
<DefaultLayoutWithVerticalNav>
<router-view v-slot="{ Component }">
<keep-alive>
<component :is="Component" v-if="$route.meta.keepAlive" :key="$route.name" />
<component :is="Component" v-if="$route.meta.keepAlive" :key="$route.fullPath" />
</keep-alive>
<component :is="Component" v-if="!$route.meta.keepAlive" :key="$route.name" />
<component :is="Component" v-if="!$route.meta.keepAlive" :key="$route.fullPath" />
</router-view>
</DefaultLayoutWithVerticalNav>
</template>
<style lang="scss">
// As we are using `layouts` plugin we need its styles to be imported
@use '@layouts/styles/default-layout';
@use "@layouts/styles/default-layout";
</style>

View File

@@ -129,10 +129,11 @@ onMounted(() => {
<VTextarea
v-model="customIdentifiers"
auto-grow
placeholder="支持正则表达式,特殊字符需要\转义,一行为一组,支持种配置格式:
placeholder="支持正则表达式,特殊字符需要\转义,一行为一组,支持以下几种配置格式:
屏蔽词
被替换词 => 替换词
前定位词 <> 后定位词 >> 偏移量EP"
前定位词 <> 后定位词 >> 偏移量EP
被替换词 => 替换词 && 前定位词 <> 后定位词 >> 集偏移量EP"
/>
</VCardItem>
<VCardItem>