HZH-PC\HZH 4 年之前
父节点
当前提交
18aa21e146
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      src/components/UserTest.vue

+ 10 - 0
src/components/UserTest.vue

@@ -1,10 +1,20 @@
 <style lang="scss" scoped>
 .home-page{
+  .ee{
+    width: 100px;
+    height: 100px;
+    background: black;
+    transition:width 2s;
+    &:hover{
+      width:300px;
+    }
+  }
 }
 </style>
 <template>
 <div class="home-page">
   <SrpElement :config="config" :type="type"></SrpElement>
+  <div class="ee"></div>
 </div>
 </template>