Skip to content

Commit

Permalink
Implemented: header minimal as a functional component(vuestorefront#592)
Browse files Browse the repository at this point in the history
  • Loading branch information
ymaheshwari1 committed Mar 13, 2021
1 parent bedc696 commit 67ae1d2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions components/organisms/o-header-minimal.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
<template>
<template functional>
<div class="o-header-minimal">
<ALogo />
</div>
</template>

<script>
import ALogo from 'theme/components/atoms/a-logo';
import Vue from 'vue'
Vue.component('ALogo', ALogo)
export default {
name: 'OHeaderMinimal',
components: { ALogo }
name: 'OHeaderMinimal'
};
</script>

Expand Down

0 comments on commit 67ae1d2

Please sign in to comment.