index.vue 379 B

123456789101112131415161718192021
  1. <template>
  2. <!-- filter saturate-50 -->
  3. <div class="content">
  4. <h1 class="h-26 text-6xl">Teleport</h1>
  5. <Demo></Demo>
  6. </div>
  7. </template>
  8. <script lang="ts" setup>
  9. import { ref, reactive } from "vue";
  10. import Demo from "./Demo.vue";
  11. </script>
  12. <style lang="scss" scoped>
  13. .content {
  14. width: 800px;
  15. height: 800px;
  16. background: red;
  17. filter: saturate(50%);
  18. }
  19. </style>