| | |
| | | v-if="activeBook.name == 'sportsAndHealth'" |
| | | ></sportsAndHealth> |
| | | <artAndDance v-if="activeBook.name == 'artAndDance'"></artAndDance> |
| | | <math v-if="activeBook.name == 'math'"></math> |
| | | <mathBook v-if="activeBook.name == 'math'"></mathBook> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | import english from "./books/English/view/index.vue"; |
| | | import sportsAndHealth from "./books/sportsAndHealth/view/index"; |
| | | import artAndDance from './books/artAndDance/view/index.vue' |
| | | import math from './books/math/view/index.vue' |
| | | import mathBook from './books/math/view/index.vue' |
| | | export default { |
| | | name: "App", |
| | | components: { |
| | |
| | | english, |
| | | sportsAndHealth, |
| | | artAndDance, |
| | | math |
| | | mathBook |
| | | }, |
| | | data() { |
| | | return { |