Change modifiers private to public in *.vue
Remove mistyped
This commit is contained in:
parent
488f4d078e
commit
9973b8d766
|
@ -147,7 +147,7 @@ export default class AddColumn extends Vue {
|
|||
console.log("Account dialog:" + id)
|
||||
}
|
||||
}
|
||||
</script>=
|
||||
</script>
|
||||
|
||||
<style scoped lang="postcss">
|
||||
#timelines {
|
||||
|
|
|
@ -147,7 +147,7 @@ export default class AddColumn extends Vue {
|
|||
console.log("Account dialog:" + id)
|
||||
}
|
||||
}
|
||||
</script>=
|
||||
</script>
|
||||
|
||||
<style scoped lang="postcss">
|
||||
#timelines {
|
||||
|
|
|
@ -40,7 +40,7 @@ export default class Welcome extends Vue {
|
|||
public publicTLButton: string = 'Streaming Public Timeline'
|
||||
public TLButton: string = 'Timeline'
|
||||
}
|
||||
</script>=
|
||||
</script>
|
||||
|
||||
<style lang="postcss">
|
||||
#welcome {
|
||||
|
|
|
@ -11,7 +11,7 @@ import { Component, Prop, Vue } from 'vue-property-decorator'
|
|||
inheritAttrs: false,
|
||||
})
|
||||
export default class BaseButton extends Vue {
|
||||
@Prop() private type?: string
|
||||
@Prop() public type?: string
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -64,8 +64,8 @@ interface TheDeskInfo {
|
|||
|
||||
@Component
|
||||
export default class About extends Vue {
|
||||
private thedeskInfo: TheDeskInfo = ipcRenderer.sendSync('thedesk-info')
|
||||
private isDarkMode: boolean = ipcRenderer.sendSync('dark-theme')
|
||||
public thedeskInfo: TheDeskInfo = ipcRenderer.sendSync('thedesk-info')
|
||||
public isDarkMode: boolean = ipcRenderer.sendSync('dark-theme')
|
||||
|
||||
public get ctrHtml(): string {
|
||||
return this.contributors.map(contributer => {
|
||||
|
|
|
@ -15,7 +15,7 @@ import Welcome from '@/components/Welcome.vue'
|
|||
},
|
||||
})
|
||||
export default class App extends Vue {
|
||||
private isDarkMode: boolean = ipcRenderer.sendSync('dark-theme')
|
||||
public isDarkMode: boolean = ipcRenderer.sendSync('dark-theme')
|
||||
public fontSize: string = '16px'
|
||||
|
||||
public get styles(): { [key: string]: string } {
|
||||
|
|
Loading…
Reference in New Issue
Block a user