You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
333 B

2 years ago
  1. <template>
  2. <div>
  3. <slot v-if="load" name="default"></slot>
  4. <slot v-else name="fallback"></slot>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. load: false,
  12. }
  13. },
  14. mounted() {
  15. setTimeout(() => {
  16. this.load = true
  17. }, 1000)
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. </style>