You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
557 B
29 lines
557 B
<template>
|
|
<div id="bookshelf">
|
|
<div class="bookshelf-header" style="height:120px">
|
|
<span class="icon iconfont icon-l" @click="goBack()"></span>
|
|
<h2>书单推荐</h2>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { bookListCrud } from './mixins/booklist.js'
|
|
export default {
|
|
name: 'NewBook',
|
|
components: { },
|
|
mixins: [bookListCrud],
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "~@/assets/styles/index.scss";
|
|
</style>
|