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