This commit is contained in:
ThatOneCalculator 2022-10-25 12:01:41 -07:00
parent ac0aa5c2c0
commit 30df6ae75b
2 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "12.119.0-calc.1-rc.9.7",
"version": "12.119.0-calc.1-rc.9.8",
"codename": "aqua",
"repository": {
"type": "git",

View File

@ -63,12 +63,11 @@ const props = defineProps<{
const tabs = ['featured', 'users', 'search'];
let tab = $computed({
get: () => tabs[0],
set: (x) => {
syncSlide(tabs.indexOf(x));
},
});
const emit = defineEmits<{
(ev: 'update:tab', key: string);
}>();
let tab = $ref('featured');
let tagsEl = $ref<InstanceType<typeof MkFolder>>();
let searchQuery = $ref(null);
let searchOrigin = $ref('combined');
@ -115,7 +114,10 @@ function setSwiperRef(swiper) {
}
function onSlideChange() {
tab = tabs[swiperRef.activeIndex + 1];
// tab = tabs[swiperRef.activeIndex];
let theTab = tabs[swiperRef.activeIndex];
console.log(theTab);
emit('update:tab', theTab);
}
function syncSlide(index) {