regulationsModel.vue 404 B

123456789101112131415161718192021222324252627
  1. // 用户反馈
  2. <template>
  3. <div class="center">
  4. <div>用户反馈</div>
  5. <el-button @click="number">{{ num }}</el-button>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. num: 1111,
  13. };
  14. },
  15. methods: {
  16. number() {
  17. this.num = '用户反馈';
  18. },
  19. },
  20. };
  21. </script>
  22. <style lang="scss" scoped>
  23. .center {
  24. padding: 10px;
  25. background: #e8ecf6;
  26. }
  27. </style>