16 lines
179 B
Vue
16 lines
179 B
Vue
<template>
|
|
<div class="title">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.title{
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
</style>
|