Fix bugs with images
parent
39722d6614
commit
c5db4803f5
@ -0,0 +1,19 @@
|
|||||||
|
import { AppModule } from '@/store/app'
|
||||||
|
import { Component, Vue } from 'vue-property-decorator'
|
||||||
|
import AppIcon from '@/components/app/AppIcon.vue'
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
components: { AppIcon }
|
||||||
|
})
|
||||||
|
export default class BrightIcon extends Vue {
|
||||||
|
get brightLevel() {
|
||||||
|
return AppModule.brightness
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return <div class="app-bar__bright">
|
||||||
|
<AppIcon name="brightness" class="brightness-icon"/>
|
||||||
|
{ this.brightLevel }
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue