lint code

This commit is contained in:
2024-02-18 19:49:37 +01:00
parent cae75f0cb2
commit 522ff05151
6 changed files with 11 additions and 11 deletions

View File

@@ -19,20 +19,20 @@ useIntervalFn(() => {
animated
color="hotpink"
/>
<Label text="cos(x)" color="hotpink" :position="[2, -0.5]" size="small"/>
<Label text="cos(x)" color="hotpink" :position="[2, -0.5]" size="small" />
<FunctionPlot
:function="(x) => Math.sin(x)"
:line-width="2"
animated
color="#33aabb"
/>
<Label text="sin(x)" color="#33aabb" :position="[2, 1]" size="small"/>
<Label text="sin(x)" color="#33aabb" :position="[2, 1]" size="small" />
<FunctionPlot
:function="(x) => Math.exp(x)"
:line-width="2"
animated
/>
<Label text="exp(x)" :position="[0.7, 2]" size="small"/>
<Label text="exp(x)" :position="[0.7, 2]" size="small" />
<FunctionPlot
:function="(x) => Math.log(x)"
:domain="[0.001, 4]"
@@ -40,7 +40,7 @@ useIntervalFn(() => {
animated
color="limegreen"
/>
<Label text="ln(x)" color="limegreen" :position="[0.2, -2]" size="small"/>
<Label text="ln(x)" color="limegreen" :position="[0.2, -2]" size="small" />
<FunctionPlot
:function="(x) => -x"
:domain="[-3, 0]"
@@ -55,7 +55,7 @@ useIntervalFn(() => {
animated
color="orange"
/>
<Label text="|x|" color="orange" :position="[-2, 2]" size="small"/>
<Label text="|x|" color="orange" :position="[-2, 2]" size="small" />
</Graph>
</div>
<div>

View File

@@ -32,7 +32,9 @@ defineProps({
<h1 v-else class="mr-3 my-1 text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100">
{{ experience.company }}
</h1>
<div class="text-subtitle text-xs">{{ experience.location }}</div>
<div class="text-subtitle text-xs">
{{ experience.location }}
</div>
</div>
</div>
</div>