cleaning up the useless parts
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user