• This project
    • Loading...
  • Sign in

오윤석 / maplespec.ga

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 4
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • oss-maple
  • app
  • web
  • src
  • routes
  • Character.svelte
  • 오윤석's avatar
    character page 추가 · 3b1ed2d9
    3b1ed2d9
    오윤석 authored 2020-06-04 21:50:35 +0900
Character.svelte 268 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<script>
  export let params = {};

  import {push} from 'svelte-spa-router';

  function init() {
    if(!params.character) {
      M.toast({html:"캐릭터명을 입력해주세요."});
      push("/");
    }
  }

  init();
</script>

<svelte:head>
  
</svelte:head>