Add the following code to the hml file
<image-animator if="{{ meds == null }}" images="{{ loaderFrames }}" duration="800ms" style="width : 128px; height : 128px;" />Copy codeCopy code
And also add following code to js file
export default {
data: {
loaderFrames: [
{src: "/common/l/000.png"}, {src: "/common/l/045.png"}, {src: "/common/l/090.png"}, {src: "/common/l/135.png"},
{src: "/common/l/180.png"}, {src: "/common/l/225.png"}, {src: "/common/l/270.png"}, {src: "/common/l/315.png"}
],
}
Top comments (0)