parent
1bb4f6035c
commit
ac77148e1b
3 changed files with 24 additions and 77 deletions
@ -1,32 +0,0 @@ |
||||
<template> |
||||
<div class="category"> |
||||
<h3>{{ title }}分类</h3> |
||||
<slot name="slot1">slot默认值1</slot> |
||||
<slot name="slot2">slot默认值2</slot> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "Category", |
||||
// props: ['title', 'listData'] |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
.category { |
||||
background-color: skyblue; |
||||
width: 200px; |
||||
height: 300px; |
||||
} |
||||
h3 { |
||||
text-align: center; |
||||
background-color: orange; |
||||
} |
||||
img { |
||||
width: 100% |
||||
} |
||||
video { |
||||
width: 100%; |
||||
} |
||||
</style> |
@ -0,0 +1,20 @@ |
||||
<template> |
||||
<div> |
||||
<h1>当前求和为:???</h1> |
||||
<select> |
||||
<option value="1">1</option> |
||||
<option value="2">2</option> |
||||
<option value="3">3</option> |
||||
</select> |
||||
<button>+</button> |
||||
<button>-</button> |
||||
<button>当前求和为奇数再加</button> |
||||
<button>等一等再加</button> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "Count", |
||||
} |
||||
</script> |
Loading…
Reference in new issue