environmentalProtection.vue 437 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="environmentalProtection">
  3. environmentalProtection
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "environmentalProtection",
  9. components: {},
  10. data() {
  11. return {}
  12. },
  13. created() {},
  14. methods: {}
  15. };
  16. </script>
  17. <style lang="scss" scope>
  18. .environmentalProtection {
  19. border: 1px solid rgb(13, 83, 212);
  20. box-sizing: border-box;
  21. flex-grow: 1;
  22. color: #eee;
  23. }
  24. </style>