mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
26 lines
339 B
Vue
26 lines
339 B
Vue
<template>
|
|||
<img
|
|||
:src="basePath + 'n8n-logo.svg'"
|
|||
:class="$style.img"
|
|||
alt="n8n.io"
|
|||
/>
|
|||
</template>
|
|||
|
|||
<script lang="ts">
|
|||
import Vue from 'vue';
|
|||
|
|||
export default Vue.extend({
|
|||
computed: {
|
|||
basePath(): string {
|
|||
return this.$store.getters.getBaseUrl;
|
|||
},
|
|||
},
|
|||
});
|
|||
</script>
|
|||
|
|||
<style lang="scss" module>
|
|||
.img {
|
|||
height: 32px;
|
|||
}
|
|||
</style>
|