This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-02-03 cmp-communicatio.../src/components/KnowledgeBase.vue

13 lines
180 B
Vue
Raw Normal View History

2021-02-03 21:41:50 +01:00
<template>
<section>
<h2>Select a Topic</h2>
<knowledge-grid></knowledge-grid>
2021-02-03 21:41:50 +01:00
</section>
</template>
<script>
export default {
2021-02-03 21:56:09 +01:00
emits: ['select-topic']
2021-02-03 21:41:50 +01:00
};
2021-02-03 21:56:09 +01:00
</script>