bkp
This commit is contained in:
parent
8bb5aea15e
commit
24c07da6f8
17 changed files with 1458 additions and 371 deletions
|
|
@ -8,6 +8,7 @@
|
|||
<v-tab value="cartao">Cartão</v-tab>
|
||||
<v-tab value="campo">Campo</v-tab>
|
||||
<v-tab value="data_hora">Data e hora</v-tab>
|
||||
<v-tab value="tabela">Tabela</v-tab>
|
||||
<v-tab value="ola_mundo">Demo</v-tab>
|
||||
</v-tabs>
|
||||
|
||||
|
|
@ -18,6 +19,7 @@
|
|||
<CartaoPlayground v-else-if="aba === 'cartao'" />
|
||||
<CampoPlayground v-else-if="aba === 'campo'" />
|
||||
<DataHoraPlayground v-else-if="aba === 'data_hora'" />
|
||||
<TabelaPlayground v-else-if="aba === 'tabela'" />
|
||||
<OlaMundoPlayground v-else />
|
||||
</v-container>
|
||||
</template>
|
||||
|
|
@ -29,6 +31,7 @@ import IndicadorPlayground from "./indicador.playground.vue";
|
|||
import CartaoPlayground from "./cartao.playground.vue";
|
||||
import CampoPlayground from "./campo.playground.vue";
|
||||
import DataHoraPlayground from "./data_hora.playground.vue";
|
||||
import TabelaPlayground from "./tabela.playground.vue";
|
||||
import OlaMundoPlayground from "./ola_mundo.playground.vue";
|
||||
|
||||
export default defineComponent({
|
||||
|
|
@ -39,6 +42,7 @@ export default defineComponent({
|
|||
CartaoPlayground,
|
||||
CampoPlayground,
|
||||
DataHoraPlayground,
|
||||
TabelaPlayground,
|
||||
OlaMundoPlayground,
|
||||
},
|
||||
data() {
|
||||
|
|
@ -49,6 +53,7 @@ export default defineComponent({
|
|||
| "cartao"
|
||||
| "campo"
|
||||
| "data_hora"
|
||||
| "tabela"
|
||||
| "ola_mundo",
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue