fix: 🐛 gay gay homosexual gay
This commit is contained in:
parent
7ef63a770c
commit
72ee2e3fdc
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "calckey",
|
||||
"version": "12.118.1-calc.2-rc.22",
|
||||
"version": "12.118.1-calc.2-rc.23",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -60,11 +60,12 @@ const props = defineProps<{
|
|||
}>();
|
||||
|
||||
let featured = $ref('featured');
|
||||
const tabs = ['featured', 'users', 'search'];
|
||||
|
||||
const tab = $computed({
|
||||
let tab = $computed({
|
||||
get: () => featured,
|
||||
set: (x) => {
|
||||
syncSlide(['featured', 'users', 'search'].indexOf(x));
|
||||
syncSlide(tabs.indexOf(x));
|
||||
},
|
||||
});
|
||||
|
||||
|
@ -113,7 +114,7 @@ function setSwiperRef(swiper) {
|
|||
}
|
||||
|
||||
function onSlideChange() {
|
||||
saveSrc(timelines[swiperRef.activeIndex]);
|
||||
tab = tabs[swiperRef.activeIndex];
|
||||
}
|
||||
|
||||
function syncSlide(index) {
|
||||
|
|
|
@ -276,6 +276,7 @@ let swiperRef = null;
|
|||
|
||||
function setSwiperRef(swiper) {
|
||||
swiperRef = swiper;
|
||||
syncSlide(timelines.indexOf(src));
|
||||
}
|
||||
|
||||
function onSlideChange() {
|
||||
|
@ -286,7 +287,6 @@ function syncSlide(index) {
|
|||
swiperRef.slideTo(index);
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
Loading…
Reference in New Issue