cleaning up the useless parts

This commit is contained in:
2025-12-18 15:30:20 +03:30
parent ef1bfc81b4
commit 74f5650e2c

View File

@@ -57,17 +57,14 @@
</template> </template>
<script setup> <script setup>
import pic from "/pic.jpg"; import pic from "/pic.jpg";
import { nextTick, ref, reactive, computed } from "vue"; import { nextTick, ref } from "vue";
const props = defineProps(["navbarInput"]); const props = defineProps(["navbarInput"]);
function filterData() { function filterData() {
props.navbarInput.forEach((element) => {}); props.navbarInput.forEach((element) => {});
} }
const selecteddata = ref("Product");
let selectedName = {}; let selectedName = {};
selectedName = props.navbarInput[0]; selectedName = props.navbarInput[0];
const hoverd = ref(false); const hoverd = ref(false);
const randomnumber = ref(0);
const selectedText = computed(() => {});
async function ChangeState(key) { async function ChangeState(key) {
selectedName = props.navbarInput[key]; selectedName = props.navbarInput[key];
hoverd.value = false; hoverd.value = false;