blob: e3b0eb420095c8bf4a3164bdc68ca024a0848916 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<template>
<!-- Home is a view for browsing through the primary inventory. It should
allow users to sort, filter, and search for items and add them to their
cart. -->
<div>
<figure class="image is-128x128">
<img alt="The Glassy Ladies" src="../assets/logo.png" />
</figure>
</div>
</template>
<script>
export default {
name: "Home"
};
</script>
|