123456789101112131415161718192021222324252627 |
- <template>
- <div class="environmentalProtection">
- environmentalProtection
- </div>
- </template>
- <script>
- export default {
- name: "environmentalProtection",
- components: {},
- data() {
- return {}
- },
- created() {},
- methods: {}
- };
- </script>
- <style lang="scss" scope>
- .environmentalProtection {
- border: 1px solid rgb(13, 83, 212);
- box-sizing: border-box;
- flex-grow: 1;
- color: #eee;
- }
- </style>
|