| | |
| | | <div id="app"> |
| | | <childHealth v-if="config.activeBook.name == 'childHealth'"></childHealth> |
| | | <book v-if="config.activeBook.name == 'content'"></book> |
| | | <!-- <English v-if="activeBook == 'English'"></English> --> |
| | | <embedded v-if="config.activeBook.name == 'embedded'" ></embedded> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import childHealth from "./books/childHealth/view/index.vue"; |
| | | import book from './books/content/index.vue' |
| | | // import English from './books/English/view/index.vue' |
| | | import embedded from "./books/embedded/view/index.vue" |
| | | |
| | | export default { |
| | | name: "App", |
| | | components: { |
| | | childHealth, |
| | | book |
| | | // English |
| | | book, |
| | | embedded |
| | | } |
| | | }; |
| | | </script> |