File tree 2 files changed +8
-3
lines changed 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 31
31
</template >
32
32
33
33
<script setup lang="ts">
34
-
34
+ // @ts-nocheck
35
+ // No check for the shell
35
36
import { useStore } from " ../../../store/main.js" ;
36
37
37
38
const { shell } = window ;
Original file line number Diff line number Diff line change 48
48
Quickly create accessible HTML elements by adding components from the Vuetensils
49
49
Component Library! These naked components are designed to have bare minimum styles,
50
50
to avoid bloat while including accessibility. Learn more about Vuetensils in the
51
- <!-- <a class="link" href="https://vuetensils.com/Introduction.html">documentation</a>. -->
52
- documentation: <span class =" dead-link" >https://vuetensils.com/Introduction.html</span >.
51
+ <a class =" link" @click =" openUrl('https://vuetensils.com/Introduction.html')" > <u >documentation</u > </a >.
53
52
</p >
54
53
<img
55
54
alt =" Vuetensils"
72
71
</template >
73
72
74
73
<script setup lang="ts">
74
+ // @ts-nocheck
75
+ // No check for the shell
75
76
import { useStore } from " ../../../store/main.js" ;
76
77
78
+ const { shell } = window ;
79
+
77
80
const store = useStore ();
78
81
const emit = defineEmits ([" nextTab" ]);
79
82
80
83
const toggleTutorial = () => store .toggleTutorial ();
81
84
const nextTab = () => emit (" nextTab" );
85
+ const openUrl = (url : string ) => shell .openExternal (url , { activate: true });
82
86
</script >
83
87
84
88
<style scoped lang="scss">
You can’t perform that action at this time.
0 commit comments