feat: added blank pages for ARL info and Spotify Features info

This commit is contained in:
Roberto Tonino 2020-11-07 14:05:10 +01:00
parent 4e17ea1a32
commit b6aec174ef
5 changed files with 540 additions and 377 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,11 @@
<template>
<div>
<h1 class="mb-8 text-5xl">{{ $t('settings.login.arl.question') }}</h1>
<p></p>
</div>
</template>
<script>
export default {}
</script>

View File

@ -0,0 +1,12 @@
<template>
<div>
<h1 class="mb-8 text-5xl">{{ $t('settings.spotify.question') }}</h1>
</div>
</template>
<script>
export default {}
</script>
<style>
</style>

View File

@ -35,10 +35,11 @@
<i class="material-icons">assignment</i> <i class="material-icons">assignment</i>
</button> </button>
</div> </div>
<!-- <a href="https://git.fuwafuwa.moe/RemixDev/deemix/wiki/Getting-your-own-ARL" target="_blank"> -->
<a href="#"> <RouterLink :to="{ name: 'ARL' }">
{{ $t('settings.login.arl.question') }} {{ $t('settings.login.arl.question') }}
</a> </RouterLink>
<a id="settings_btn_applogin" v-if="clientMode" href="#" @click="appLogin"> <a id="settings_btn_applogin" v-if="clientMode" href="#" @click="appLogin">
{{ $t('settings.login.login') }} {{ $t('settings.login.login') }}
</a> </a>
@ -606,10 +607,9 @@
</svg> </svg>
{{ $t('settings.spotify.title') }} {{ $t('settings.spotify.title') }}
</h3> </h3>
<!-- <a href="https://git.fuwafuwa.moe/RemixDev/deemix/wiki/Enabling-Spotify-Features" target="_blank"> --> <RouterLink :to="{ name: 'Spotify Features' }">
<a href="#">
{{ $t('settings.spotify.question') }} {{ $t('settings.spotify.question') }}
</a> </RouterLink>
<div class="input_group"> <div class="input_group">
<p class="input_group_text">{{ $t('settings.spotify.clientID') }}</p> <p class="input_group_text">{{ $t('settings.spotify.clientID') }}</p>

View File

@ -5,6 +5,8 @@ import EventBus from '@/utils/EventBus'
// Pages // Pages
import About from '@components/pages/About.vue' import About from '@components/pages/About.vue'
import InfoArl from '@components/pages/InfoArl.vue'
import InfoSpotifyFeatures from '@components/pages/InfoSpotifyFeatures.vue'
import Artist from '@components/pages/Artist.vue' import Artist from '@components/pages/Artist.vue'
import Charts from '@components/pages/Charts.vue' import Charts from '@components/pages/Charts.vue'
import Errors from '@components/pages/Errors.vue' import Errors from '@components/pages/Errors.vue'
@ -82,6 +84,16 @@ const routes = [
name: 'About', name: 'About',
component: About component: About
}, },
{
path: '/arl',
name: 'ARL',
component: InfoArl
},
{
path: '/info-spotify',
name: 'Spotify Features',
component: InfoSpotifyFeatures
},
{ {
path: '/settings', path: '/settings',
name: 'Settings', name: 'Settings',