Add base files from AME

This commit is contained in:
cryptofyre 2021-11-19 17:02:28 -06:00
parent e8f3881513
commit e3c3bded3a
129 changed files with 19056 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<div class="md-container" id="outputdevices-vue">
<div class="md-header">
<h1 class="md-h1">Output Device</h1>
</div>
<div class="md-body" style="overflow-y: overlay">
<div class="md-option-container">
<div class="md-option-line" v-for="(device) in devices">
<template v-if="selected == device.deviceId">
<div class="md-option-segment" style="cursor: pointer;background: var(--keyColor);color: white;">
▶ {{ device.label }}
</div>
</template>
<template v-else>
<div class="md-option-segment" @click="setOutputDevice(device.deviceId)" style="cursor: pointer">
{{ device.label }}
</div>
</template>
</div>
</div>
</div>
<div class="md-footer">
</div>
</div>