Skip to content
Snippets Groups Projects
Commit d5849f78 authored by Zara Mudassar's avatar Zara Mudassar
Browse files

Item-card branch

parent 9ce6a43f
No related branches found
No related tags found
3 merge requests!19Item card,!17Item card,!6Login form
<template>
</template>
<script>
export default {
name: "ItemCard.vue"
}
</script>
<style scoped>
</style>
......@@ -22,7 +22,13 @@ const routes = [
path: "/login",
name: "login",
component: LoginView,
}
},
{
path: "/item-card",
name: "itemView",
component: () =>
import("../views/ItemCardView.vue"),
},
];
const router = createRouter({
......
<template>
</template>
<script>
import ItemCard from "@/components/ItemCard";
export default {
name: "ItemCardView.vue",
components: {
ItemCard,
},
}
</script>
<style scoped>
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment