- Review procedures for building, versioning, and release
- Review open v3 Milestone PRs
- Finalize release notes
- Add the following to the next docs https://next.vuetifyjs.com/en/
- FAQ known issues and bugs
- How to report an issue and/or bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Import Vue": { | |
"prefix": "ivue", | |
"body": [ | |
"import { $1 } from 'vue'$0" | |
] | |
}, | |
"New TSX Component": { | |
"prefix": "bptsx", | |
"body": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="pa-16 ma-16"> | |
<v-data-table | |
:headers="headers" | |
:items="desserts" | |
item-key="name" | |
sort-by="name" | |
group-by="category" | |
class="elevation-1" | |
show-group-by |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-07-24T16:45:54.562Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-container> | |
<div class="pa-6 grey rounded-br"></div> | |
<v-row justify="center"> | |
<v-col | |
v-for="value in ['-sm', '', '-lg', '-xl']" | |
:key="value" | |
cols="12" | |
md="2" | |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-app-bar | |
:color="color" | |
@scroll="onScroll" | |
> | |
</v-app-bar> | |
</template> | |
<script> | |
export default { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[C: VApp](https://www.notion.so/C-VApp-d4e6f336436a48dbbbe827e5c274efa5) | |
[C: VAppBar](https://www.notion.so/C-VAppBar-d0291c25a59245bfba541f1ed3b3fa29) | |
[C: VBanner](https://www.notion.so/C-VBanner-914a7a73c6a540548cebc7a62ed0de48) | |
[C: VBottomNavigation](https://www.notion.so/C-VBottomNavigation-65c1eff89cd74598a3cfd920765183e3) | |
[C: VBtn](https://www.notion.so/C-VBtn-01ee5c36437f428fb4c4186d692aa773) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-container fluid> | |
<v-radio-group> | |
<v-row> | |
<v-col | |
cols="12" | |
sm="6" | |
> | |
<v-text-field | |
label="Regular" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-06-22T19:36:51.572Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<!-- v-row now provides gutter adjustments and has 3 options available --> | |
<!-- v1.5 - <v-container grid-list-xl> to v2.0 - regular (nothing required) --> | |
<!-- v1.5 - <v-container grid-list-md> to v2.0 - <v-row dense> --> | |
<!-- v1.5 - <v-container> to v2.0 - <v-row no-gutters> --> | |
<!-- v1.5 --> | |
<v-container grid-list-xl> | |
<v-layout> |
NewerOlder