chore: fix lint issue

This commit is contained in:
Clark Du 2019-06-25 11:01:58 +01:00
parent 52cafef9a2
commit 445584f738
No known key found for this signature in database
GPG Key ID: D0E5986AF78B86D9
5 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,7 @@
import { storiesOf } from '@storybook/vue'
import MyButton from '~/components/Button.vue'
import Centered from '@storybook/addon-centered'
import MyButton from '~/components/Button.vue'
storiesOf('Button', module)
.addDecorator(Centered)

View File

@ -1,8 +1,7 @@
import { storiesOf } from '@storybook/vue'
import VuetifyLogo from '~/components/VuetifyLogo.vue'
import Centered from '@storybook/addon-centered'
import VuetifyLogo from '~/components/VuetifyLogo.vue'
storiesOf('Vuetify/Logo', module)
.addDecorator(Centered)

View File

@ -19,8 +19,8 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'
import Card from '~/components/Card.vue'
import { namespace } from 'vuex-class'
import Card from '~/components/Card.vue'
import * as people from '~/store/modules/people'

View File

@ -5,8 +5,8 @@
</template>
<script>
import DoughnutChart from '~/components/doughnut-chart'
import axios from 'axios'
import DoughnutChart from '~/components/doughnut-chart'
function getRandomColor() {
const letters = '0123456789ABCDEF'

View File

@ -5,9 +5,9 @@
</template>
<script>
import BarChart from '~/components/bar-chart'
import axios from 'axios'
import moment from 'moment'
import BarChart from '~/components/bar-chart'
export default {
components: {