@@ -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>