made audio settings menu
This commit is contained in:
parent
4c930d6177
commit
3a58d0de7c
1 changed files with 43 additions and 0 deletions
|
@ -0,0 +1,43 @@
|
||||||
|
<script type="text/x-template" id="audio-settings">
|
||||||
|
<template>
|
||||||
|
<div class="modal-fullscreen audiosettings-panel" @click.self="app.resetState()" @contextmenu.self="app.resetState()">
|
||||||
|
<div class="modal-window">
|
||||||
|
<div class="modal-header">
|
||||||
|
<div class="modal-title">{{app.getLz('term.audioSettings')}}</div>
|
||||||
|
<button class="close-btn" @click="app.resetState()"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-content">
|
||||||
|
<button class="playlist-item"
|
||||||
|
@click="openEqualizer()" style="width:100%;">
|
||||||
|
<div class="name">{{app.getLz('term.equalizer')}}</div>
|
||||||
|
</button>
|
||||||
|
<button class="playlist-item"
|
||||||
|
@click="openSpacialAudio()" style="width:100%;">
|
||||||
|
<div class="name">{{app.getLz('settings.option.audio.enableAdvancedFunctionality.audioSpatialization')}}</div>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
Vue.component('audio-settings', {
|
||||||
|
template: '#audio-settings',
|
||||||
|
data: function () {
|
||||||
|
return {
|
||||||
|
app: this.$root,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
props: {},
|
||||||
|
mounted() {},
|
||||||
|
methods: {
|
||||||
|
openEqualizer() {
|
||||||
|
|
||||||
|
},
|
||||||
|
openSpacialAudio() {
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
Loading…
Add table
Add a link
Reference in a new issue