import ShopList from './components/ShopList.vue'
import ShopDetail from './components/ShopDetail.vue'
export {
ShopList,
ShopDetail
}
export default {
install: (app: any) => {
app.component('ShopList', ShopList)
app.component('ShopDetail', ShopDetail)
}
}