sketch out stepper version of catedit ui

This commit is contained in:
Seth Ladygo
2019-04-02 14:59:48 -07:00
parent eb7269458d
commit c7b3bd48a9
5 changed files with 191 additions and 150 deletions

View File

@ -0,0 +1,30 @@
<template>
<v-toolbar dark dense app>
<v-toolbar-title class="headline text-uppercase">
<span>ProCatalog</span>
<span class="font-weight-light">Catalog Editor</span>
</v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items class="hidden-sm-and-down">
<v-btn
flat
href="https://github.com/vuetifyjs/vuetify/releases/latest"
target="_blank"
>Dashboard</v-btn>
<v-btn flat>Link Two</v-btn>
<v-btn flat>Link Three</v-btn>
</v-toolbar-items>
</v-toolbar>
</template>
<script>
export default {
data: () => ({
foo: true
})
}
</script>
<style>
</style>