123456789101112131415161718192021222324252627 |
- <template>
- <div id="spdIndex">
- <div style="padding:0 0 30px 10px;">
-
- <div style="text-align: center;margin-top:20px;">
- <el-button style="width: 150px;" type="primary" size="mini" @click="add()">新增问题</el-button>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data () {
- return {}
- },
- methods: {
- add() {
- this.$emit('update-data', false)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
-
- </style>
|