Commit 95f5d67e authored by lipengcheng 's avatar lipengcheng

一些优化

parent eae03e33
......@@ -9,9 +9,9 @@ module.exports = {
// extends: ['plugin:vue/essential', '@vue/airbnb',],
// 3: ESLint + Standard config
// extends: [ 'plugin:vue/essential', '@vue/airbnb',],
// ESLint + Prettier
// extends: ['plugin:vue/recommended', 'eslint:recommended'],
extends: ['plugin:vue/recommended', 'eslint:recommended', '@vue/prettier'],
// 4. ESLint + Prettier
// extends: ['plugin:vue/recommended', 'eslint:recommended', '@vue/prettier'],
extends: ['plugin:vue/recommended', 'eslint:recommended'],
plugins: [],
parserOptions: {
parser: 'babel-eslint'
......
module.exports = {
// 换行长度
printWidth: 80,
printWidth: 150,
// tab缩进大小,默认为2
tabWidth: 4,
// 使用tab缩进,默认false
......
......@@ -19,9 +19,7 @@ export default {
},
methods: {
async request() {
let result = await this.$http.get(
'/webapi/home/banner?type=1&category=18'
)
let result = await this.$http.get('/webapi/home/banner?type=1&category=18')
console.log('result:', result)
}
}
......
......@@ -5,10 +5,7 @@ import { register } from 'register-service-worker'
if (process.env.NODE_ENV === 'production') {
register(`${process.env.BASE_URL}service-worker.js`, {
ready() {
console.log(
'App is being served from cache by a service worker.\n' +
'For more details, visit https://goo.gl/AFskqB'
)
console.log('App is being served from cache by a service worker.\n' + 'For more details, visit https://goo.gl/AFskqB')
},
registered() {
console.log('Service worker has been registered.')
......@@ -23,9 +20,7 @@ if (process.env.NODE_ENV === 'production') {
console.log('New content is available; please refresh.')
},
offline() {
console.log(
'No internet connection found. App is running in offline mode.'
)
console.log('No internet connection found. App is running in offline mode.')
},
error(error) {
console.error('Error during service worker registration:', error)
......
......@@ -12,14 +12,12 @@ const routes = [
layout: 'DefaultLayout',
title: '首页'
},
component: () =>
import(/* webpackChunkName: "about" */ '../views/home.vue')
component: () => import(/* webpackChunkName: "about" */ '../views/home.vue')
},
{
path: '/page1',
name: 'Page1',
component: () =>
import(/* webpackChunkName: "about" */ '../views/page1.vue')
component: () => import(/* webpackChunkName: "about" */ '../views/page1.vue')
},
{
path: '/page2',
......@@ -31,8 +29,7 @@ const routes = [
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
import(/* webpackChunkName: "about" */ '../views/page2.vue')
component: () => import(/* webpackChunkName: "about" */ '../views/page2.vue')
}
]
......
......@@ -22,10 +22,7 @@
<script>
export default {
components: {
ffasfasdfsfa: () =>
import(
'@.../dfsfsfsfds/fsdfdsfsdf/sdfsdfsdf/sdfsdfdsf/sdfsdfsdf/sdf.vue'
)
ffasfasdfsfa: () => import('@.../dfsfsfsfds/fsdfdsfsdf/sdfsdfsdf/sdfsdfdsf/sdfsdfsdf/sdf.vue')
},
data() {
return {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment