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>
|