This file contains hidden or 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-layout align-start justify-center> | |
| <v-spacer></v-spacer> | |
| <v-flex xs4 class="elevation-1 pa-3 ma-2"> | |
| <v-tabs v-model="active" color="cyan" dark slider-color="yellow"> | |
| <draggable v-model="tabs" class="v-tabs__container"> | |
| <v-tab v-for="tab in tabs" :key="tab.id" ripple> | |
| {{ tab.name }} | |
| </v-tab> |
This file contains hidden or 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-layout align-start justify-center> | |
| <v-flex xs4 class="elevation-2 ma-2"> | |
| <v-tabs v-model="model" color="cyan" dark slider-color="yellow"> | |
| <draggable v-model="tabs" class="v-tabs__container" @update="tabUpdate"> | |
| <v-tab v-for="(tab, index) in tabs" :key="index" :href="`#tab-${index}`"> | |
| {{ tab.name }} | |
| </v-tab> | |
| </draggable> |
This file contains hidden or 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
| /* | |
| * Copyright (C) 2016 Raecoo Cao | |
| * See LICENSE for the copy of MIT license | |
| */ | |
| // https://support.google.com/youtube/answer/2853702?hl=zh-Hans | |
| // BEGIN Lambda configuration | |
| // | |
| var pipelineId = '1481448705022-x1efcv'; // change to your pipeline! |
OlderNewer