module card & deck
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
205de31c1c
commit
7ee4d17776
@ -0,0 +1,16 @@
|
|||||||
|
export default{
|
||||||
|
emits:[],
|
||||||
|
data: function(){
|
||||||
|
return{
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
clicked:function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template:`
|
||||||
|
<div v-bind:style="{ color: 'red', fontSize: '20px' }">yess</div>
|
||||||
|
`
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
export default{
|
||||||
|
emits:[],
|
||||||
|
data: function(){
|
||||||
|
return{
|
||||||
|
cards:[]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
clicked:function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template:`
|
||||||
|
<div v-bind:style="{border: '3px solid black', fontSize: '20px', display:'flex'}">
|
||||||
|
<div v-for="n in 10">
|
||||||
|
{{ n }}
|
||||||
|
<card-module></card-module>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
}
|
Loading…
Reference in new issue