You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wow-lite-wallet/src/renderer/components/Landing/WarioSettings.vue

59 lines
1.6 KiB

<template>
<div class="wario_seq">
<div class="wario_walking_animated">
<div class="wario_walking">
</div>
<div class="coin" style="height: 20px;width: 20px;top:0;right:10px;"></div>
<div class="coin" style="height: 32px;width: 28px;top:14px;right:38px;-webkit-transform: scaleX(-1);"></div>
<div class="coin" style="height: 20px;width: 20px;top:30px;right:22px;"></div>
<div class="coin" style="height: 24px;width: 24px;top:54px;right:32px;"></div>
</div>
<div class="perlsux"></div>
<div class="grass_container">
<div class="grass"></div>
<div class="grassfill">
<span class="version">
{{version}} - <span style="font-size:12px;">{{version_embedded}}</span>
</span>
</div>
</div>
</div>
</template>
<script>
export default {
name: "WarioSettings",
data(){
return {
'electron_version': null
}
},
mounted() {
jQuery('main.credits .perlsux').click((event) => {
this.back();
});
},
methods: {
back(){
this.$router.push({name: 'landing-page'});
},
},
computed: {
version_embedded(){
return this.$store.state.version_embedded;
},
version(){
return this.$store.state.version;
}
}
}
</script>
<style scoped>
</style>