remove a console.log
This commit is contained in:
parent
9a37720c86
commit
255b296012
@ -3,38 +3,35 @@
|
|||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<Ribbon />
|
<Ribbon />
|
||||||
<Header on:changeTab={({ detail }) => activeTab = detail}/>
|
<Header on:changeTab={({ detail }) => (activeTab = detail)} />
|
||||||
|
|
||||||
<div class:hide={activeTab !== 'editor'}>
|
<div class:hide={activeTab !== "editor"}>
|
||||||
<ShipEdit />
|
<ShipEdit />
|
||||||
</div>
|
</div>
|
||||||
<div class:hide={activeTab !== 'json'}>
|
<div class:hide={activeTab !== "json"}>
|
||||||
<JsonOutput />
|
<JsonOutput />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if activeTab === 'print'}
|
{#if activeTab === "print"}
|
||||||
<PrintOutput ship={$state} />
|
<PrintOutput ship={$state} />
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getContext } from 'svelte';
|
import { getContext } from "svelte";
|
||||||
import { Modal, Card, Nav } from "svelte-chota";
|
import { Modal, Card, Nav } from "svelte-chota";
|
||||||
|
|
||||||
import Ribbon from "./Ribbon.svelte";
|
import Ribbon from "./Ribbon.svelte";
|
||||||
import Header from "./Header.svelte";
|
import Header from "./Header.svelte";
|
||||||
import ShipEdit from "./ShipEdit/index.svelte";
|
import ShipEdit from "./ShipEdit/index.svelte";
|
||||||
import About from "./About.svelte";
|
import About from "./About.svelte";
|
||||||
import JsonOutput from './Output/Json.svelte';
|
import JsonOutput from "./Output/Json.svelte";
|
||||||
import PrintOutput from './Output/Print/index.svelte';
|
import PrintOutput from "./Output/Print/index.svelte";
|
||||||
|
|
||||||
let activeTab = 'editor';
|
let activeTab = "editor";
|
||||||
$: console.log(activeTab);
|
|
||||||
|
|
||||||
const {state} = getContext('ship');
|
const { state } = getContext("ship");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
Loading…
Reference in New Issue
Block a user