Change modifiers private to public in *.vue

Remove mistyped
This commit is contained in:
kPherox 2019-04-27 03:10:35 +09:00
parent 488f4d078e
commit 9973b8d766
No known key found for this signature in database
GPG Key ID: C04751C2BFA2F62D
6 changed files with 7 additions and 7 deletions

View File

@ -147,7 +147,7 @@ export default class AddColumn extends Vue {
console.log("Account dialog:" + id)
}
}
</script>=
</script>
<style scoped lang="postcss">
#timelines {

View File

@ -147,7 +147,7 @@ export default class AddColumn extends Vue {
console.log("Account dialog:" + id)
}
}
</script>=
</script>
<style scoped lang="postcss">
#timelines {

View File

@ -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 {

View File

@ -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>

View File

@ -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 => {

View File

@ -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 } {