22 lines
269 B
Vue
22 lines
269 B
Vue
<template>
|
|
<div class="base"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'basePage',
|
|
data () {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.base {
|
|
width: 100%;
|
|
height: 100px;
|
|
margin-top: 40px;
|
|
background-color: palegreen;
|
|
}
|
|
</style>
|