el-progress进度条增加动画效果

// 定义动画
@keyframes progress {
  from {
    width: 0;
  }
  to {
  }
}
// 使用动画
::v-deep .el-progress-bar__inner {
  animation: progress 1s ease;
}

你可能感兴趣的:(1024程序员节)