开关增加文字支持
parent
0df60c5597
commit
77c3f6480d
|
@ -1,13 +1,21 @@
|
||||||
<template>
|
<template>
|
||||||
<label>
|
<section>
|
||||||
<span class="dot"></span>
|
<label>
|
||||||
</label>
|
<span class="dot"></span>
|
||||||
|
</label>
|
||||||
|
<slot></slot>
|
||||||
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
:host {
|
:host {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
||||||
|
section {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
label {
|
label {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 38px;
|
width: 38px;
|
||||||
|
@ -107,7 +115,7 @@ export default class Switch {
|
||||||
__init__() {
|
__init__() {
|
||||||
/* render */
|
/* render */
|
||||||
|
|
||||||
this.__SWITCH__ = this.root.lastElementChild
|
this.__SWITCH__ = this.root.lastElementChild.firstElementChild
|
||||||
}
|
}
|
||||||
|
|
||||||
get value() {
|
get value() {
|
||||||
|
|
Reference in New Issue