Skip to content
Snippets Groups Projects
Commit a43c3282 authored by Titus Netland's avatar Titus Netland
Browse files

Project folder and file restructuring/renaming

parent a671861b
No related branches found
No related tags found
1 merge request!50Project folder and file restructuring/renaming
Pipeline #177592 passed
Showing
with 10 additions and 11 deletions
...@@ -10,7 +10,7 @@ import { defineComponent } from "vue"; ...@@ -10,7 +10,7 @@ import { defineComponent } from "vue";
// Components // Components
import NavBar from "./components/NavBar.vue"; import NavBar from "./components/NavigationComponents/NavBar.vue";
export default defineComponent({ export default defineComponent({
name: "App", name: "App",
......
src/assets/logo.png

6.69 KiB

<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.5 100"><defs><style>.cls-1{fill:#1697f6;}.cls-2{fill:#7bc6ff;}.cls-3{fill:#1867c0;}.cls-4{fill:#aeddff;}</style></defs><title>Artboard 46</title><polyline class="cls-1" points="43.75 0 23.31 0 43.75 48.32"/><polygon class="cls-2" points="43.75 62.5 43.75 100 0 14.58 22.92 14.58 43.75 62.5"/><polyline class="cls-3" points="43.75 0 64.19 0 43.75 48.32"/><polygon class="cls-4" points="64.58 14.58 87.5 14.58 43.75 100 43.75 62.5 64.58 14.58"/></svg>
...@@ -198,7 +198,7 @@ ...@@ -198,7 +198,7 @@
v-show="imageAdded" v-show="imageAdded"
@click="removeImage" @click="removeImage"
> >
<img src="../assets/removeIcon.png" alt="Remove icon image" /> <img src="../../assets/removeIcon.png" alt="Remove icon image" />
</button> </button>
</div> </div>
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
</template> </template>
<script> <script>
import ItemCard from "@/components/ItemCard"; import ItemCard from "@/components/GroupComponents/ItemCard";
export default { export default {
name: "SearchItemListComponent", name: "SearchItemListComponent",
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
</template> </template>
<script> <script>
import GroupListItem from "@/components/GroupeComponents/GroupListItem.vue"; import GroupListItem from "@/components/GroupComponents/GroupListItem.vue";
export default { export default {
name: "GroupList", name: "GroupList",
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div class="w-4/5 rounded bg-gray-200"> <div class="w-4/5 rounded bg-gray-200">
<img <img
class="w-full" class="w-full"
:src="item.img || require('../assets/default-product.png')" :src="item.img || require('../../assets/default-product.png')"
alt="Item image" alt="Item image"
/> />
<div class="p-1 m-1"> <div class="p-1 m-1">
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
</template> </template>
<script> <script>
import ItemCard from "@/components/ItemCard"; import ItemCard from "@/components/GroupComponents/ItemCard";
export default { export default {
name: "SearchItemListComponent", name: "SearchItemListComponent",
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<div class="logo"> <div class="logo">
<img <img
class="m-1 ml-4 cursor-pointer h-12" class="m-1 ml-4 cursor-pointer h-12"
src="../assets/logo3.svg" src="../../assets/logo3.svg"
alt="BoCo logo" alt="BoCo logo"
@click="$router.push('/')" @click="$router.push('/')"
/> />
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<li> <li>
<img <img
class="m-6 cursor-pointer h-7" class="m-6 cursor-pointer h-7"
src="../assets/additem.png" src="../../assets/additem.png"
alt="Legg til" alt="Legg til"
@click="$router.push('/addNewItem')" @click="$router.push('/addNewItem')"
/> />
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<li> <li>
<img <img
class="m-6 cursor-pointer h-7" class="m-6 cursor-pointer h-7"
src="../assets/messages.png" src="../../assets/messages.png"
alt="Meldinger" alt="Meldinger"
@click="$router.push('/messages')" @click="$router.push('/messages')"
/> />
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
<li> <li>
<img <img
class="m-6 cursor-pointer h-7" class="m-6 cursor-pointer h-7"
src="../assets/profile.png" src="../../assets/profile.png"
alt="Profil" alt="Profil"
@click="loadProfile" @click="loadProfile"
/> />
......
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