mirror of
https://github.com/aelve/guide.git
synced 2024-12-25 22:02:58 +03:00
26 lines
498 B
Vue
26 lines
498 B
Vue
<template>
|
|
<v-toolbar dark app>
|
|
<v-toolbar-title>
|
|
<logo />
|
|
</v-toolbar-title>
|
|
<v-spacer></v-spacer>
|
|
<search-field />
|
|
</v-toolbar>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import SearchField from 'client/components/Search.vue'
|
|
import Logo from 'client/components/Logo.vue'
|
|
import Component from 'vue-class-component'
|
|
import axios from 'axios'
|
|
|
|
@Component({
|
|
components: {
|
|
SearchField,
|
|
Logo
|
|
}
|
|
})
|
|
export default class Toolbar extends Vue {}
|
|
</script>
|