Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Files

Latest commit

 

History

History

linear-progress

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

LinearProgress

Markup

<m-linear-progress
  :open="isProgressOpen"
  :progress="0.5"
  :buffer="0.5"
  indeterminate/>

Script

data () {
  return {
    isProgressOpen: true
  }
}

Props

Prop Type Default Required Description
open Boolean false - linear progress starts in open state
indeterminate Boolean false - indeterminate state
reverse Boolean false - reverse direction of progress
progress Number - false progress value between 0 and 1
buffer Number - false buffer value between 0 and 1

Reference