osm_my_commerce/pages/index.vue

20 lines
355 B
Vue

<template>
<section class="section">
<!-- <h1 class="title">{{ $t('message') }}</h1>-->
<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>