small adjustments
This commit is contained in:
@@ -31,6 +31,5 @@ const isMobile = computed( ():boolean =>{
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: 1px solid gray;
|
border-bottom: 1px solid gray;
|
||||||
min-height: 20px;
|
min-height: 20px;
|
||||||
margin-top: -20px;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -87,7 +87,8 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
visible(newValue) { if (newValue) {
|
visible(newValue) {
|
||||||
|
if (newValue) {
|
||||||
this.resetData()
|
this.resetData()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -226,7 +226,8 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
visible(newValue) { if (newValue) {
|
visible(newValue) {
|
||||||
|
if (newValue) {
|
||||||
this.updateData()
|
this.updateData()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -43,7 +43,6 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
copyToClipboard(txt:string) {
|
copyToClipboard(txt:string) {
|
||||||
|
|
||||||
const clipboard = new Clipboard('.clipboard-btn', {
|
const clipboard = new Clipboard('.clipboard-btn', {
|
||||||
text: () => txt
|
text: () => txt
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user