|
|
@@ -67,13 +67,14 @@ et aux préférences de l'utilisateur
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
-import { defineComponent, reactive, useContext, computed, ComputedRef, Ref } from '@nuxtjs/composition-api'
|
|
|
-import { UnwrapRef } from '@vue/composition-api'
|
|
|
+import {
|
|
|
+ defineComponent, reactive, useContext, computed, ComputedRef, Ref, UnwrapRef
|
|
|
+} from '@nuxtjs/composition-api'
|
|
|
import { $useMenu } from '~/use/layout/menu'
|
|
|
import { AnyJson } from '~/types/interfaces'
|
|
|
|
|
|
export default defineComponent({
|
|
|
- setup (props, { emit }) {
|
|
|
+ setup (_props, { emit }) {
|
|
|
const { store, $config } = useContext()
|
|
|
|
|
|
const properties:UnwrapRef<AnyJson> = reactive({
|
|
|
@@ -118,8 +119,7 @@ export default defineComponent({
|
|
|
|
|
|
<style scoped>
|
|
|
.help {
|
|
|
- padding: 14px;
|
|
|
- padding-bottom: 13px;
|
|
|
+ padding: 14px 14px 13px;
|
|
|
font-size: 14px;
|
|
|
text-decoration: none;
|
|
|
}
|