add: full multi-tenancy control
This commit is contained in:
46
storage/framework/views/6fb6d9feeb93e6fdb9c5e671249d0b02.php
Executable file
46
storage/framework/views/6fb6d9feeb93e6fdb9c5e671249d0b02.php
Executable file
@@ -0,0 +1,46 @@
|
||||
<v-shimmer-image <?php echo e($attributes); ?>>
|
||||
<div <?php echo e($attributes->merge(['class' => 'shimmer bg-neutral-100'])); ?>></div>
|
||||
</v-shimmer-image>
|
||||
|
||||
<?php if (! $__env->hasRenderedOnce('64e34f58-e15e-4d49-a238-e25b825c841d')): $__env->markAsRenderedOnce('64e34f58-e15e-4d49-a238-e25b825c841d');
|
||||
$__env->startPush('scripts'); ?>
|
||||
<script
|
||||
type="text/x-template"
|
||||
id="v-shimmer-image-template"
|
||||
>
|
||||
<div
|
||||
class="shimmer"
|
||||
v-bind="$attrs"
|
||||
v-show="isLoading"
|
||||
>
|
||||
</div>
|
||||
|
||||
<img
|
||||
v-bind="$attrs"
|
||||
:src="src"
|
||||
@load="onLoad"
|
||||
v-show="! isLoading"
|
||||
>
|
||||
</script>
|
||||
|
||||
<script type="module">
|
||||
app.component('v-shimmer-image', {
|
||||
template: '#v-shimmer-image-template',
|
||||
|
||||
props: ['src'],
|
||||
|
||||
data() {
|
||||
return {
|
||||
isLoading: true,
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onLoad() {
|
||||
this.isLoading = false;
|
||||
},
|
||||
},
|
||||
});
|
||||
</script>
|
||||
<?php $__env->stopPush(); endif; ?>
|
||||
<?php /**PATH /var/www/html/packages/Webkul/Admin/src/Resources/views/components/shimmer/image/index.blade.php ENDPATH**/ ?>
|
||||
Reference in New Issue
Block a user