Began migration to Vuetify 2.x expect a lot to be broken
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
v-if="name"
|
||||
v-model="inputName"
|
||||
/>
|
||||
<div class="layout row justify-center">
|
||||
<div class="layout justify-center">
|
||||
<v-btn
|
||||
v-show="nameMatch"
|
||||
class="primary"
|
||||
@@ -32,7 +32,7 @@
|
||||
</dialog-base>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script lang="js">
|
||||
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
||||
|
||||
export default {
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script lang="js">
|
||||
import isDarkColor from '/imports/ui/utility/isDarkColor.js';
|
||||
|
||||
export default {
|
||||
|
||||
@@ -41,16 +41,20 @@
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script lang="js">
|
||||
import '/imports/ui/dialogStack/dialogStackWindowEvents.js';
|
||||
import mockElement from '/imports/ui/dialogStack/mockElement.js';
|
||||
import DialogComponentIndex from '/imports/ui/dialogStack/DialogComponentIndex.js';
|
||||
import { VLayout } from 'vuetify/lib'
|
||||
|
||||
const OFFSET = 16;
|
||||
const MOCK_DURATION = 400; // Keep in sync with css transition of .dialog
|
||||
|
||||
export default {
|
||||
components: DialogComponentIndex,
|
||||
components: {
|
||||
VLayout,
|
||||
...DialogComponentIndex,
|
||||
},
|
||||
computed: {
|
||||
dialogs(){
|
||||
return this.$store.state.dialogStack.dialogs;
|
||||
|
||||
Reference in New Issue
Block a user