Commit b6414844 authored by yimj's avatar yimj

提交转换宝的结构

parent 8bf1db9c
...@@ -33,7 +33,8 @@ module.exports = { ...@@ -33,7 +33,8 @@ module.exports = {
SwitchCase: 1 // 针对switch case的缩进 SwitchCase: 1 // 针对switch case的缩进
} }
], ],
'linebreak-style': ['warn', 'unix'], //'linebreak-style': ['warn', 'unix'],
'linebreak-style': [0, 'error', 'windows'],
'no-irregular-whitespace': [ 'no-irregular-whitespace': [
1, 1,
{ skipComments: true, skipTemplates: true, skipRegExps: true } { skipComments: true, skipTemplates: true, skipRegExps: true }
......
...@@ -24,9 +24,9 @@ const routes = [ ...@@ -24,9 +24,9 @@ const routes = [
component: () => import(/* webpackChunkName: "bao1" */ '../views/videoCutter.vue') component: () => import(/* webpackChunkName: "bao1" */ '../views/videoCutter.vue')
}, },
{ {
path: '/bao2', path: '/videoConverter',
name: 'Bao2', name: 'VideoConverter',
component: () => import(/* webpackChunkName: "bao2" */ '../views/bao2.vue') component: () => import(/* webpackChunkName: "bao2" */ '../views/videoConverter.vue')
} }
] ]
......
<template> <template>
<div class="videoConverterBaby"></div> <div class="videoConverter">转换baby</div>
</template> </template>
<script> <script>
export default { export default {
name: 'VideoConverterBaby', name: 'VideoConverter',
components: {}, components: {},
props: {}, props: {},
data() { data() {
...@@ -17,7 +17,7 @@ export default { ...@@ -17,7 +17,7 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.videoConverterBaby { .videoConverter {
width: 100%; width: 100%;
height: 100%; height: 100%;
background-color: #fff; background-color: #fff;
......
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