summaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2019-12-20 22:26:53 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-01-29 01:18:05 +0300
commite2fd156773dbc2e919c912673de092d707e8ef69 (patch)
tree5b861f723e71156def2a096d0542de96841ee27a /src/App.vue
parentf65ee346bedb1811e88b12542abce0d18bb5fc32 (diff)
downloadwebui-vue-e2fd156773dbc2e919c912673de092d707e8ef69.tar.xz
Fix linting in script blocks in vue files
- Removed the .eslintrc and added the pretteri rules to the eslintrc file - Ran `npm run lint --fix` Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: I4e36c1967ae9b4d839ef88f1d47ffa20ab4e4991
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/App.vue b/src/App.vue
index d5b49329..a5a768a5 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -5,15 +5,15 @@
</template>
<style lang="scss">
-@import "@/assets/styles/_obmc-custom";
+@import '@/assets/styles/_obmc-custom';
</style>
<script>
export default {
- name: "App",
+ name: 'App',
watch: {
$route: function(to) {
- document.title = to.meta.title || "Page is Missing Title";
+ document.title = to.meta.title || 'Page is Missing Title';
}
}
};