37 lines
360 B
Vue
37 lines
360 B
Vue
<template lang="pug">
|
|
#app
|
|
router-view
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
}
|
|
},
|
|
created(){
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
components: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import "~@less/utils/normalize.less";
|
|
.content {
|
|
img {
|
|
width: 100%;
|
|
}
|
|
span {
|
|
font-size: 15px;
|
|
line-height: 25px;
|
|
}
|
|
}
|
|
</style>
|