mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 08:13:01 +00:00
BulmaBreadcrumb interface Step
This commit is contained in:
parent
3af743a6e6
commit
be78671ffe
2 changed files with 3 additions and 8 deletions
|
@ -21,10 +21,10 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Options, Vue } from "vue-class-component";
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
type Step = {
|
export interface Step {
|
||||||
label: string;
|
label: string;
|
||||||
icon: string;
|
icon: string;
|
||||||
};
|
}
|
||||||
|
|
||||||
@Options({
|
@Options({
|
||||||
props: {
|
props: {
|
||||||
|
|
|
@ -14,15 +14,10 @@
|
||||||
import { Vue, Options } from "vue-class-component";
|
import { Vue, Options } from "vue-class-component";
|
||||||
import { Rectangle } from "./rects/rectangles";
|
import { Rectangle } from "./rects/rectangles";
|
||||||
|
|
||||||
import BulmaBreadcrumb from "./BulmaBreadcrumb.vue";
|
import BulmaBreadcrumb, { Step } from "./BulmaBreadcrumb.vue";
|
||||||
import DoorPlacer from "./door_map/DoorPlacer.vue";
|
import DoorPlacer from "./door_map/DoorPlacer.vue";
|
||||||
import DoorChooser from "./door_map/DoorChooser.vue";
|
import DoorChooser from "./door_map/DoorChooser.vue";
|
||||||
|
|
||||||
type Step = {
|
|
||||||
label: string;
|
|
||||||
icon: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
@Options({
|
@Options({
|
||||||
components: {
|
components: {
|
||||||
BulmaBreadcrumb,
|
BulmaBreadcrumb,
|
||||||
|
|
Loading…
Reference in a new issue