*.vue: update indentation

This commit is contained in:
Seth Ladygo
2019-04-03 00:09:09 -07:00
parent 9bf32f3d32
commit 3037aa6026
5 changed files with 74 additions and 74 deletions

View File

@ -14,15 +14,15 @@ import Navbar from './components/Navbar'
import CatalogEditor from './components/CatalogEditor'
export default {
name: 'App',
components: {
Navbar,
CatalogEditor
},
data () {
return {
//
}
name: 'App',
components: {
Navbar,
CatalogEditor
},
data () {
return {
//
}
}
}
</script>

View File

@ -37,14 +37,14 @@
<script>
export default {
data: () => ({
seasons: [ 'SS19', 'FW19', 'SS20' ],
regions: [ 'US', 'Canada', 'Mexico' ],
season: null,
region: null,
name: null,
ispublic: true
})
data: () => ({
seasons: [ 'SS19', 'FW19', 'SS20' ],
regions: [ 'US', 'Canada', 'Mexico' ],
season: null,
region: null,
name: null,
ispublic: true
})
}
</script>

View File

@ -1,41 +1,41 @@
<template>
<v-stepper v-model="step">
<v-stepper-header>
<v-stepper-step :complete="step > 1" step="1">Catalog info</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step :complete="step > 2" step="2">Contents</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step step="3">Pagination</v-stepper-step>
</v-stepper-header>
<v-stepper v-model="step">
<v-stepper-header>
<v-stepper-step :complete="step > 1" step="1">Catalog info</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step :complete="step > 2" step="2">Contents</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step step="3">Pagination</v-stepper-step>
</v-stepper-header>
<v-stepper-items>
<v-stepper-content step="1">
<CatalogInfo/>
<v-btn flat>Cancel</v-btn>
<v-btn @click="step = 1" disabled="true">Back</v-btn>
<v-btn @click="step = 2" color="primary">Next</v-btn>
</v-stepper-content>
<v-stepper-items>
<v-stepper-content step="1">
<CatalogInfo/>
<v-btn flat>Cancel</v-btn>
<v-btn @click="step = 1" disabled>Back</v-btn>
<v-btn @click="step = 2" color="primary">Next</v-btn>
</v-stepper-content>
<v-stepper-content step="2">
<CatalogContents/>
<v-btn flat>Cancel</v-btn>
<v-btn @click="step = 1">Back</v-btn>
<v-btn @click="step = 3" color="primary">Next</v-btn>
</v-stepper-content>
<v-stepper-content step="2">
<CatalogContents/>
<v-btn flat>Cancel</v-btn>
<v-btn @click="step = 1">Back</v-btn>
<v-btn @click="step = 3" color="primary">Next</v-btn>
</v-stepper-content>
<v-stepper-content step="3">
<v-card
class="mb-5"
color="grey lighten-1"
height="200px"
></v-card>
<v-stepper-content step="3">
<v-card
class="mb-5"
color="grey lighten-1"
height="200px"
></v-card>
<v-btn flat>Cancel</v-btn>
<v-btn @click="step = 2">Back</v-btn>
<v-btn color="primary">Done</v-btn>
</v-stepper-content>
</v-stepper-items>
</v-stepper>
<v-btn flat>Cancel</v-btn>
<v-btn @click="step = 2">Back</v-btn>
<v-btn color="primary">Done</v-btn>
</v-stepper-content>
</v-stepper-items>
</v-stepper>
</template>
<script>
@ -43,19 +43,19 @@ import CatalogInfo from './CatalogInfo'
import CatalogContents from './CatalogContents'
export default {
components: {
CatalogInfo,
CatalogContents
},
data: () => ({
/* seasons: [ 'SS19', 'FW19', 'SS20' ],
* regions: [ 'US', 'Canada', 'Mexico' ],
* season: null,
* region: null,
* name: null, */
/* ispublic: true, */
step: 1
})
components: {
CatalogInfo,
CatalogContents
},
data: () => ({
/* seasons: [ 'SS19', 'FW19', 'SS20' ],
* regions: [ 'US', 'Canada', 'Mexico' ],
* season: null,
* region: null,
* name: null, */
/* ispublic: true, */
step: 1
})
}
</script>

View File

@ -37,14 +37,14 @@
<script>
export default {
data: () => ({
seasons: [ 'SS19', 'FW19', 'SS20' ],
regions: [ 'US', 'Canada', 'Mexico' ],
season: null,
region: null,
name: null,
ispublic: true
})
data: () => ({
seasons: [ 'SS19', 'FW19', 'SS20' ],
regions: [ 'US', 'Canada', 'Mexico' ],
season: null,
region: null,
name: null,
ispublic: true
})
}
</script>

View File

@ -19,9 +19,9 @@
<script>
export default {
data: () => ({
foo: true
})
data: () => ({
foo: true
})
}
</script>