You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
547 B

6 years ago
<script type="text/jsx">
6 years ago
//从muse-ui处搬运,https://muse-ui.org/#/zh-CN/progress
export default {
name: "LinerProgress",
6 years ago
functional: true,
6 years ago
props: {show: Boolean},
6 years ago
render(h, context) {
if (context.props.show) {
return (
<div class="liner-progress">
<div class="liner-progress-background"/>
<div class="linear-progress-indeterminate"/>
</div>
)
6 years ago
}
}
6 years ago
}
6 years ago
</script>
<style lang="scss" src="./style.scss"></style>