@burh/nuxt-core 1.0.192 → 1.0.194
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="text-center">
|
|
3
|
+
<!-- Quando for implementado as cores de cada página usar variável "color" -->
|
|
4
|
+
<i
|
|
5
|
+
:class="
|
|
6
|
+
`fas fa-2x products-spin fa-circle-notch fa-spin text-primary`
|
|
7
|
+
"
|
|
8
|
+
></i>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script>
|
|
13
|
+
export default {
|
|
14
|
+
name: 'infinite-loading',
|
|
15
|
+
props: {
|
|
16
|
+
color: String
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<style lang="scss" scoped></style>
|