299b686612
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
256 B
Vue
13 lines
256 B
Vue
<template>
|
|
<div>
|
|
<h2 class="subtitle">{{ $t('No preferences yet') }}</h2>
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
|
|
@Component
|
|
export default class Preferences extends Vue {
|
|
|
|
}
|
|
</script> |