Bläddra i källkod

Modified iconList

sun_song_1203 4 år sedan
förälder
incheckning
9b62b40adf
2 ändrade filer med 21 tillägg och 2 borttagningar
  1. 13 0
      web/src/view/iconList/component/iconList.vue
  2. 8 2
      web/src/view/iconList/index.vue

+ 13 - 0
web/src/view/iconList/component/iconList.vue

@@ -0,0 +1,13 @@
+<template>
+    
+</template>
+
+<script>
+    export default {
+        name: "iconList"
+    }
+</script>
+
+<style scoped>
+
+</style>

+ 8 - 2
web/src/view/iconList/index.vue

@@ -1404,9 +1404,15 @@
 </template>
 
 <script>
+    import iconList from "./component/iconList"
     export default {
-        name: "index",
-
+        name: 'IconList',
+        data() {
+            return {}
+        },
+        components: {
+            iconList
+        }
     }
 </script>