You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
435 B
21 lines
435 B
export default{
|
|
emits:[],
|
|
data: function(){
|
|
return{
|
|
cards:[]
|
|
}
|
|
},
|
|
methods:{
|
|
clicked:function () {
|
|
|
|
}
|
|
},
|
|
template:`
|
|
<div v-bind:style="{border: '3px solid black', fontSize: '20px', display:'flex', margin:'20px 10em 20px 20px'}">
|
|
<div v-for="n in 10">
|
|
{{ n }}
|
|
<card-module></card-module>
|
|
</div>
|
|
</div>
|
|
`
|
|
} |