vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

fix(layout): use suspense to delay render of layout items

Open nekosaur opened this issue 3 years ago • 3 comments

Description

closes #15202

same principle as in https://github.com/vuetifyjs/vuetify/pull/15215

Motivation and Context

How Has This Been Tested?

Markup:

<template>
  <v-app>
    <v-navigation-drawer permanent>
      nav drawer

    </v-navigation-drawer>
    <v-app-bar>
      <v-toolbar-title>Title</v-toolbar-title>
    </v-app-bar>

    <v-main app>
      <v-container>
        Something!
      </v-container>
    </v-main>
  </v-app>

</template>

Types of changes

  • [x] Bug fix (non-breaking change which fixes an issue)
  • [ ] New feature (non-breaking change which adds functionality)
  • [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • [ ] Improvement/refactoring (non-breaking change that doesn't add any features but makes things better)

Checklist:

  • [x] The PR title is no longer than 64 characters.
  • [x] The PR is submitted to the correct branch (master for bug fixes and documentation updates, dev for new features and backwards compatible changes and next for non-backwards compatible changes).
  • [x] My code follows the code style of this project.
  • [x] I've added relevant changes to the documentation (applies to new features and breaking changes in core library)

nekosaur avatar Jun 08 '22 21:06 nekosaur

There's still https://github.com/vuejs/core/pull/6095, I haven't seen it in this PR but I also have no idea why it happens in the first place.

KaelWD avatar Jul 05 '22 16:07 KaelWD

Any news on when we'll see this one merged? 🙏

warflash avatar Aug 24 '22 22:08 warflash

When https://github.com/vuejs/core/pull/6095 is.

KaelWD avatar Aug 25 '22 03:08 KaelWD