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>
|
||||
</button>
|
||||
</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') }}
|
||||
</a>
|
||||
</RouterLink>
|
||||
|
||||
<a id="settings_btn_applogin" v-if="clientMode" href="#" @click="appLogin">
|
||||
{{ $t('settings.login.login') }}
|
||||
</a>
|
||||
@ -606,10 +607,9 @@
|
||||
</svg>
|
||||
{{ $t('settings.spotify.title') }}
|
||||
</h3>
|
||||
<!-- <a href="https://git.fuwafuwa.moe/RemixDev/deemix/wiki/Enabling-Spotify-Features" target="_blank"> -->
|
||||
<a href="#">
|
||||
<RouterLink :to="{ name: 'Spotify Features' }">
|
||||
{{ $t('settings.spotify.question') }}
|
||||
</a>
|
||||
</RouterLink>
|
||||
|
||||
<div class="input_group">
|
||||
<p class="input_group_text">{{ $t('settings.spotify.clientID') }}</p>
|
||||
|
@ -5,6 +5,8 @@ import EventBus from '@/utils/EventBus'
|
||||
|
||||
// Pages
|
||||
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 Charts from '@components/pages/Charts.vue'
|
||||
import Errors from '@components/pages/Errors.vue'
|
||||
@ -82,6 +84,16 @@ const routes = [
|
||||
name: 'About',
|
||||
component: About
|
||||
},
|
||||
{
|
||||
path: '/arl',
|
||||
name: 'ARL',
|
||||
component: InfoArl
|
||||
},
|
||||
{
|
||||
path: '/info-spotify',
|
||||
name: 'Spotify Features',
|
||||
component: InfoSpotifyFeatures
|
||||
},
|
||||
{
|
||||
path: '/settings',
|
||||
name: 'Settings',
|
||||
|
Loading…
Reference in New Issue
Block a user