mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
5ca2148c7e
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
25 lines
452 B
Vue
25 lines
452 B
Vue
<template>
|
|
<img :src="basePath + 'n8n-logo-expanded.svg'" :class="$style.img" alt="n8n.io" />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { useRootStore } from '@/stores/n8nRootStore';
|
|
import { mapStores } from 'pinia';
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
computed: {
|
|
...mapStores(useRootStore),
|
|
basePath(): string {
|
|
return this.rootStore.baseUrl;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.img {
|
|
height: 32px;
|
|
}
|
|
</style>
|