[+] Add centered property to loading spinner
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="el-loading-spinner">
|
<div class="el-loading-spinner" :class="{'not-centered': !centered}">
|
||||||
<svg viewBox="25 25 50 50" class="circular" :style="{width: size + 'px', height: size + 'px'}">
|
<svg viewBox="25 25 50 50" class="circular" :style="{width: size + 'px', height: size + 'px'}">
|
||||||
<circle cx="50" cy="50" r="20" fill="none" class="path"/>
|
<circle cx="50" cy="50" r="20" fill="none" class="path"/>
|
||||||
</svg>
|
</svg>
|
||||||
@@ -12,8 +12,18 @@
|
|||||||
@Component
|
@Component
|
||||||
export default class LoadingSpinner extends Vue
|
export default class LoadingSpinner extends Vue
|
||||||
{
|
{
|
||||||
@Prop({default: 42}) size: number
|
@Prop({default: "42"}) size: string
|
||||||
|
@Prop({default: true}) centered: string
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped>
|
||||||
|
.not-centered
|
||||||
|
{
|
||||||
|
top: unset;
|
||||||
|
margin-top: unset;
|
||||||
|
width: unset;
|
||||||
|
text-align: unset;
|
||||||
|
position: unset;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user