testtt
This commit is contained in:
parent
ac0aa5c2c0
commit
30df6ae75b
|
@ -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",
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue