blob: c187ce6ac57909ef03a92ad3df0ad7846bfc8ffe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<template>
<div class="flex-column">
<h1>{{$t('panelLeft.mode')}}</h1>
<ld-mode-radio />
<h1>{{$t('panelLeft.filters')}}</h1>
<ld-tag-input />
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop } from "vue-property-decorator";
@Component
export default class PanelLeft extends Vue {}
</script>
<style lang="scss">
.label {
color: white;
}
</style>
|