ef62aee2218824c8592b6c833b205cf668e9cd17.svn-base 653 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="checkall">
  3. <div class="wrap">
  4. <div class="wrap-title">
  5. <el-checkbox label="title">{{title}}</el-checkbox>
  6. </div>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'checkall',
  13. data() {
  14. return {
  15. title: '所有联赛',
  16. test: '1'
  17. }
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. .wrap {
  23. width: 500px;
  24. min-height: 300px;
  25. }
  26. .wrap-title {
  27. height: 30px;
  28. line-height: 30px;
  29. background-color: #373737;
  30. }
  31. </style>