feat: added blank pages for ARL info and Spotify Features info
This commit is contained in:
parent
4e17ea1a32
commit
b6aec174ef
File diff suppressed because one or more lines are too long
11
src/components/pages/InfoArl.vue
Normal file
11
src/components/pages/InfoArl.vue
Normal 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>
|
12
src/components/pages/InfoSpotifyFeatures.vue
Normal file
12
src/components/pages/InfoSpotifyFeatures.vue
Normal 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>
|
@ -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>
|
||||||
|
@ -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',
|
||||||
|
Loading…
Reference in New Issue
Block a user