*.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' import CatalogEditor from './components/CatalogEditor'
export default { export default {
name: 'App', name: 'App',
components: { components: {
Navbar, Navbar,
CatalogEditor CatalogEditor
}, },
data () { data () {
return { return {
// //
}
} }
}
} }
</script> </script>

View File

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

View File

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

View File

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

View File

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