Fixed table loader on scrolling
parent
3ae6ee1272
commit
4f4a5956f1
|
@ -1979,5 +1979,6 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -259,12 +259,10 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
|
||||||
setTimeout(() => {
|
this.carService.getCarsLarge().then(data => {
|
||||||
this.carService.getCarsLarge().then(data => {
|
this.cars = data
|
||||||
this.cars = data
|
this.loading = false;
|
||||||
this.loading = false;
|
});
|
||||||
});
|
|
||||||
}, 150);
|
|
||||||
|
|
||||||
this.frozenCars = [
|
this.frozenCars = [
|
||||||
{brand: "BMW", year: 2013, color: "Grey", vin: "fh2uf23"},
|
{brand: "BMW", year: 2013, color: "Grey", vin: "fh2uf23"},
|
||||||
|
@ -389,12 +387,10 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
|
||||||
setTimeout(() => {
|
this.carService.getCarsLarge().then(data => {
|
||||||
this.carService.getCarsLarge().then(data => {
|
this.cars = data
|
||||||
this.cars = data
|
this.loading = false;
|
||||||
this.loading = false;
|
});
|
||||||
});
|
|
||||||
}, 150);
|
|
||||||
|
|
||||||
this.frozenCars = [
|
this.frozenCars = [
|
||||||
{brand: "BMW", year: 2013, color: "Grey", vin: "fh2uf23"},
|
{brand: "BMW", year: 2013, color: "Grey", vin: "fh2uf23"},
|
||||||
|
|
Loading…
Reference in New Issue