osm_my_commerce/pages/index.vue

20 lines
355 B
Vue
Raw Normal View History

2020-12-16 13:56:07 +01:00
<template>
<section class="section">
2020-12-17 22:14:19 +01:00
<!-- <h1 class="title">{{ $t('message') }}</h1>-->
2020-12-16 13:56:07 +01:00
<h1 class="title is-1">OSM Mon Commerce</h1>
<search-input></search-input>
</section>
</template>
<script>
import SearchInput from '~/components/SearchInput'
export default {
name: 'HomePage',
components: {
SearchInput,
},
}
</script>