We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 108f97f commit 480ebf6Copy full SHA for 480ebf6
1 file changed
entry_guide/src/App.vue
@@ -1,5 +1,4 @@
1
<script setup lang="ts">
2
-import { ref } from 'vue';
3
4
import Tabs from './Tabs.vue';
5
import type { TabItem } from './types';
@@ -10,14 +9,14 @@ import DesignTab from './tabs/DesignTab.vue';
10
9
import MetoceanTab from './tabs/MetoceanTab.vue';
11
import PerformanceTab from './tabs/PerformanceTab.vue';
12
13
-const tabList = ref<TabItem[]>([
+const tabList: TabItem[] = [
14
{ title: 'Controls', component: ControlsTab },
15
{ title: 'Costs', component: CostsTab },
16
{ title: 'Data', component: DataTab },
17
{ title: 'Design', component: DesignTab },
18
{ title: 'Metocean', component: MetoceanTab },
19
{ title: 'Performance', component: PerformanceTab }
20
-]);
+];
21
22
</script>
23
0 commit comments