29 lines
438 B
Vue
29 lines
438 B
Vue
<template>
|
|
<v-layout row wrap>
|
|
<v-flex xs6 class="left">
|
|
<v-layout column wrap fill-height>
|
|
<search-box></search-box>
|
|
<v-flex grow class="searchresult">
|
|
search result
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-flex>
|
|
</v-layout>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
.searchresult {
|
|
background-color:red;
|
|
}
|
|
</style>
|
|
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'search-box' : httpVueLoader('./searchBoxV3.vue')
|
|
}
|
|
}
|
|
</script>
|