BulmaBreadcrumb interface Step

This commit is contained in:
Jörn-Michael Miehe 2023-02-01 09:45:01 +00:00
parent 3af743a6e6
commit be78671ffe
2 changed files with 3 additions and 8 deletions

View file

@ -21,10 +21,10 @@
<script lang="ts">
import { Options, Vue } from "vue-class-component";
type Step = {
export interface Step {
label: string;
icon: string;
};
}
@Options({
props: {

View file

@ -14,15 +14,10 @@
import { Vue, Options } from "vue-class-component";
import { Rectangle } from "./rects/rectangles";
import BulmaBreadcrumb from "./BulmaBreadcrumb.vue";
import BulmaBreadcrumb, { Step } from "./BulmaBreadcrumb.vue";
import DoorPlacer from "./door_map/DoorPlacer.vue";
import DoorChooser from "./door_map/DoorChooser.vue";
type Step = {
label: string;
icon: string;
};
@Options({
components: {
BulmaBreadcrumb,