Files
inpx-web/client/components/Search/BookView/BookView.vue
2022-09-23 15:00:25 +07:00

36 lines
671 B
Vue

<template>
<div>
<div class="q-my-sm" @click="selectTitle(book.title)">
{{ book.title }}
<br>{{ book.src }}
</div>
</div>
</template>
<script>
//-----------------------------------------------------------------------------
import vueComponent from '../../vueComponent.js';
const componentOptions = {
components: {
},
watch: {
}
};
class BookView {
_options = componentOptions;
_props = {
book: Object,
};
created() {
}
}
export default vueComponent(BookView);
//-----------------------------------------------------------------------------
</script>
<style scoped>
</style>