diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-09-11 17:08:28 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-09-11 17:08:28 -0400 |
commit | c3c8633a7cd0343ce36dd0d254ace605303e1a1d (patch) | |
tree | c06b6489412038055077e2538abc7190601eff4d /iridescence/src/views/Admin.vue | |
parent | 8ac8ad09c71b10597a354eabf81cbafa14f00940 (diff) | |
download | theglassyladies-c3c8633a7cd0343ce36dd0d254ace605303e1a1d.tar.xz theglassyladies-c3c8633a7cd0343ce36dd0d254ace605303e1a1d.zip |
migrated back from typescript
Diffstat (limited to 'iridescence/src/views/Admin.vue')
-rw-r--r-- | iridescence/src/views/Admin.vue | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/iridescence/src/views/Admin.vue b/iridescence/src/views/Admin.vue index f51d3c4..a14cc7f 100644 --- a/iridescence/src/views/Admin.vue +++ b/iridescence/src/views/Admin.vue @@ -1,7 +1,14 @@ <template> - <!-- The Administrators' page lets artists/admins add or remove inventory - items and update their prices, descriptions, stock, and thumbnails. --> - <div> - <h1>This is an admin page</h1> + <div class="home"> + <img alt="Vue logo" src="../assets/logo.png" /> </div> </template> + +<script> +// @ is an alias to /src + +export default { + name: "Admin", + components: {} +}; +</script> |