web: remove unused actionToolbar
This commit is contained in:
parent
def6cb6195
commit
ab72acc92c
3 changed files with 0 additions and 57 deletions
1
web/components.d.ts
vendored
1
web/components.d.ts
vendored
|
@ -7,7 +7,6 @@ export {}
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ActionToolbar: typeof import('./src/components/actionToolbar.vue')['default']
|
||||
CategoryContainer: typeof import('./src/components/CategoryContainer.vue')['default']
|
||||
HeaderBar: typeof import('./src/components/HeaderBar.vue')['default']
|
||||
ListViewElement: typeof import('./src/components/ListViewElement.vue')['default']
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
<div v-else>
|
||||
<HeaderBar />
|
||||
<div class="ma-8">
|
||||
<actionToolbar />
|
||||
<li>
|
||||
<CategoryContainer licenseGroupName="Jetbrains Ultimate"/>
|
||||
<CategoryContainer licenseGroupName="Microsoft"/>
|
||||
|
@ -22,7 +21,6 @@
|
|||
<script setup lang="ts">
|
||||
import HeaderBar from './components/HeaderBar.vue';
|
||||
import CategoryContainer from './components/CategoryContainer.vue';
|
||||
import actionToolbar from './components/actionToolbar.vue';
|
||||
import { store } from './store';
|
||||
|
||||
|
||||
|
|
|
@ -1,54 +0,0 @@
|
|||
<template>
|
||||
<v-card flat>
|
||||
<v-container fluid>
|
||||
<v-row class="child-flex">
|
||||
<div>
|
||||
<v-toolbar>
|
||||
<v-btn
|
||||
class="hidden-xs-only"
|
||||
icon
|
||||
>
|
||||
<v-icon>mdi-arrow-left</v-icon>
|
||||
</v-btn>
|
||||
|
||||
<v-toolbar-title>Title</v-toolbar-title>
|
||||
|
||||
<v-spacer></v-spacer>
|
||||
|
||||
<v-btn
|
||||
class="hidden-xs-only"
|
||||
icon
|
||||
>
|
||||
<v-icon>mdi-magnify</v-icon>
|
||||
</v-btn>
|
||||
</v-toolbar>
|
||||
</div>
|
||||
|
||||
<div style="flex-basis: 20%">
|
||||
<v-toolbar dark>
|
||||
<v-spacer></v-spacer>
|
||||
|
||||
<v-btn icon>
|
||||
<v-icon>mdi-reply</v-icon>
|
||||
</v-btn>
|
||||
|
||||
<v-btn icon>
|
||||
<v-icon>mdi-dots-vertical</v-icon>
|
||||
</v-btn>
|
||||
</v-toolbar>
|
||||
</div>
|
||||
</v-row>
|
||||
</v-container>
|
||||
</v-card>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue