mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
14 lines
191 B
Vue
14 lines
191 B
Vue
<template>
|
|
<div id="app">
|
|
<chess-board></chess-board>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ChessBoard from './chess-board';
|
|
|
|
export default {
|
|
components: { ChessBoard }
|
|
};
|
|
</script>
|