Browse Source

fix: eslint

cuiyalong 4 năm trước cách đây
mục cha
commit
02199bea37

+ 1 - 1
src/components/common/ContentLayout.vue

@@ -28,7 +28,7 @@ export default {
   name: 'content-layout',
   props: {
     needAd: {
-      type: String,
+      type: Boolean,
       default: true
     },
     adCode: {

+ 1 - 1
src/views/project/ProjectInfo.vue

@@ -127,7 +127,7 @@ export default {
         if (item.s_toptype) {
           s.tags.push(item.s_toptype)
         }
-        s.tags = Array.from(new Set(s.tags))  // 去重
+        s.tags = Array.from(new Set(s.tags)) // 去重
         return s
       })
     }