mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-12-23 10:05:37 +00:00
Change text chunk to a b-message
This commit is contained in:
parent
d3c3b77e6b
commit
d79fd3e6e1
|
@ -4,15 +4,16 @@
|
||||||
Page opened! Check your default browser for the page, and follow the instructions there to link your patreon account.
|
Page opened! Check your default browser for the page, and follow the instructions there to link your patreon account.
|
||||||
When you are done, enter the username and token below.
|
When you are done, enter the username and token below.
|
||||||
</b-message>
|
</b-message>
|
||||||
<p>
|
<b-message type="is-info" :active.sync="show_header">
|
||||||
The <strong>Early Access</strong> release channel lets you try out the latest experimental features and fixes, before they are merged into yuzu. This channel includes all regular yuzu daily updates, plus these exclusive features.
|
The <strong>Early Access</strong> release channel lets you try out the latest experimental features and fixes, before they are merged into yuzu. This channel includes all regular yuzu daily updates, plus these exclusive features.
|
||||||
|
|
||||||
To be an Early Access member, you must be a Patreon Early Access Subscriber.
|
To be an Early Access member, you must be a Patreon Early Access Subscriber.
|
||||||
<br><br>
|
</b-message>
|
||||||
|
<div>
|
||||||
If you are a subscriber, <a v-on:click="launch_browser('https://profile.yuzu-emu.org/')">click here to link your yuzu-emu.org account</a>
|
If you are a subscriber, <a v-on:click="launch_browser('https://profile.yuzu-emu.org/')">click here to link your yuzu-emu.org account</a>
|
||||||
<br><br>
|
<br>
|
||||||
If you are not already a subscriber, <a v-on:click="launch_browser('https://www.patreon.com/join/yuzuteam/checkout?rid=2822069')">click here to become one</a>
|
If you are not already a subscriber, <a v-on:click="launch_browser('https://www.patreon.com/join/yuzuteam/checkout?rid=2822069')">click here to become one</a>
|
||||||
</p>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<div class="control">
|
<div class="control">
|
||||||
|
@ -77,6 +78,9 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
show_header: function() {
|
||||||
|
return !this.browser_opened && !this.verification_opened;
|
||||||
|
},
|
||||||
invalid_login: function() {
|
invalid_login: function() {
|
||||||
return this.verification_opened && !this.$root.is_authenticated;
|
return this.verification_opened && !this.$root.is_authenticated;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue