|
-
- <template>
- <div class="app-container">
-
- <div class="top-container">
- <TopMenu :buttonList="buttonList"/>
- </div>
- </div>
- </template>
-
- <script>
- import TopMenu from "@/components/TopMenu/index";
- export default {
- name: 'participants-manage',
- components: { TopMenu },
- data(){
- return {
- buttonList: [],
- }
- },
- mounted() {},
- created() {},
- methods: {
-
- }
- }
- </script>
-
- <style scoped lang="scss">
-
- </style>
|