123456789101112131415161718192021222324252627 |
- // 用户反馈
- <template>
- <div class="center">
- <div>用户反馈</div>
- <el-button @click="number">{{ num }}</el-button>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- num: 1111,
- };
- },
- methods: {
- number() {
- this.num = '用户反馈';
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .center {
- padding: 10px;
- background: #e8ecf6;
- }
- </style>
|