aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/InfoIcon.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-27 04:40:27 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-27 04:40:27 +1000
commit9038bfe5c381baf4b387270a29a8ccd5b58435a8 (patch)
tree760b9cb8662531c79f56ab0213033481eead5e04 /src/components/icon/InfoIcon.vue
parentaa1991239a1255855791f4c5aad9ffcb6b21a2d6 (diff)
In .vue files, move <template> sections to top
Diffstat (limited to 'src/components/icon/InfoIcon.vue')
-rw-r--r--src/components/icon/InfoIcon.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/icon/InfoIcon.vue b/src/components/icon/InfoIcon.vue
index 44d1cfa..0f390cf 100644
--- a/src/components/icon/InfoIcon.vue
+++ b/src/components/icon/InfoIcon.vue
@@ -1,8 +1,3 @@
-<script lang="ts">
-import {defineComponent, PropType} from 'vue';
-export default defineComponent({});
-</script>
-
<template>
<svg viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
@@ -11,3 +6,8 @@ export default defineComponent({});
<line x1="12" y1="8" x2="12.01" y2="8"/>
</svg>
</template>
+
+<script lang="ts">
+import {defineComponent, PropType} from 'vue';
+export default defineComponent({});
+</script>