|
-
- <template>
- <div>
-
-
- <el-button
- class="filter-item"
- v-for="(item,index) in buttonList"
- :key="index"
- :type="item.type"
- @click="item.click"
- >{{item.name}}</el-button>
- </div>
- </template>
-
- <script>
- export default {
- name: "topMenu",
- props: {
- buttonList: {
- type: Array,
- default: []
- }
- },
- data() {
- return {};
- }
- };
- </script>
-
- <style scoped>
- </style>
|