Skip to content
This repository was archived by the owner on Apr 20, 2020. It is now read-only.

Fix lint issues - single quotes and importing order #3

Merged
merged 1 commit into from
Feb 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions template/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
{{/if_eq}}
import Vue from 'vue'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import BootstrapVue from "bootstrap-vue"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import BootstrapVue from 'bootstrap-vue'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import "bootstrap/dist/css/bootstrap.min.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import "bootstrap-vue/dist/bootstrap-vue.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import App from './App'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
{{#router}}
import router from './router'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
{{/router}}
import "bootstrap/dist/css/bootstrap.min.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import "bootstrap-vue/dist/bootstrap-vue.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}

Vue.use(BootstrapVue){{#if_eq lintConfig "airbnb"}};{{/if_eq}}
Vue.config.productionTip = false{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
Expand Down