Работа над проектом

This commit is contained in:
Book Pauk
2022-09-23 15:00:25 +07:00
parent ef8fd1dd39
commit aaf3c0d076
3 changed files with 172 additions and 27 deletions

View File

@@ -0,0 +1,36 @@
<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>