| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="checkall">
- <div class="wrap">
- <div class="wrap-title">
- <el-checkbox label="title">{{title}}</el-checkbox>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'checkall',
- data() {
- return {
- title: '所有联赛',
- test: '1'
- }
- }
- }
- </script>
- <style scoped>
- .wrap {
- width: 500px;
- min-height: 300px;
- }
- .wrap-title {
- height: 30px;
- line-height: 30px;
- background-color: #373737;
- }
- </style>
|