ui_migration lint(fix): changes fixed with lint ecmaversion & es2021
This commit is contained in:
parent
0741e3cf7e
commit
ce19ea3fc0
52 changed files with 242 additions and 193 deletions
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
<script>
|
||||
//vue3 migration
|
||||
import { useIntersectionObserver } from '@vueuse/core';
|
||||
import { useIntersectionObserver } from "@vueuse/core";
|
||||
|
||||
// Export main app
|
||||
export default {
|
||||
|
|
@ -42,7 +42,7 @@ export default {
|
|||
},
|
||||
{
|
||||
threshold: 0.0,
|
||||
}
|
||||
},
|
||||
);
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@ export default {
|
|||
|
||||
props: {},
|
||||
|
||||
emits: ["set-tab"],
|
||||
|
||||
computed: {
|
||||
tooltipOptions: function () {
|
||||
var title = this.id.charAt(0).toUpperCase() + this.id.slice(1);
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
<template>
|
||||
<a
|
||||
href="#"
|
||||
class="uk-link"
|
||||
:class="classObject"
|
||||
:uk-tooltip="tooltipOptions ? tooltipOptions : null"
|
||||
@click="setThisTab"
|
||||
<a
|
||||
href="#"
|
||||
class="uk-link"
|
||||
:class="classObject"
|
||||
:uk-tooltip="tooltipOptions ? tooltipOptions : null"
|
||||
@click="setThisTab"
|
||||
>
|
||||
<slot></slot>
|
||||
<div v-if="showTitle" class="tabtitle">
|
||||
|
|
@ -49,6 +49,8 @@ export default {
|
|||
requireConnection: Boolean,
|
||||
},
|
||||
|
||||
emits: ["set-tab"],
|
||||
|
||||
computed: {
|
||||
computedTitle: function () {
|
||||
if (this.title !== undefined) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue