我想从Vuetify扩展面板中删除阴影。当前,它看起来像这样:
我的代码如下所示:
<v-layout wrap justify-space-between>
<v-flex xs12 pb-1>
<v-card>
<v-container pa-2>
<v-expansion-panel expand pa-0>
<v-expansion-panel-content>
<template v-slot:header>
<div>
{{ $t("var1") }}
</div>
</template>
<v-layout row wrap>
<v-flex xs12>
<v-text-field
class="right-input"
:label="$t('var2')"
value="600.00"
suffix="$"
disabled
flat
></v-text-field>
</v-flex>
</v-layout>
</v-expansion-panel-content>
</v-expansion-panel>
</v-container>
</v-card>
</v-flex>
</v-layout>
Run Code Online (Sandbox Code Playgroud)
是否可以从扩展面板上去除阴影?我尝试将“扁平”添加到标签,但无法解决。我的目标是,在扩展的同时,它看起来像是平面卡。谢谢!:)
我必须编写一个模拟代码,我需要一种方法来找到从一个位置到另一个位置的最短路径.该方法仅获得起始位置和最终位置,并返回表示位置之间最短道路的位置列表.像这样的东西:
public List<Tuple<int, int> ShortestRoad(Tuple<int,int> start, Tuple<int,int> end, int[,] park)
{//Code}
Run Code Online (Sandbox Code Playgroud)
如何为此方法执行Dijkstra算法实现?