Gitlab@Informatics

Skip to content
Snippets Groups Projects
Commit 910f6afa authored by 62160286's avatar 62160286
Browse files

Create OXTable and Add component MyGame in index.js

parent 0b6b5d10
No related branches found
No related tags found
No related merge requests found
<template>
<div>
<table>
<tr>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
</table>
</div>
</template>
<script>
export default {}
</script>
<style></style>
......@@ -21,6 +21,11 @@ const routes = [
name: 'MyPage',
component: () => import('../views/MyPage.vue'),
props: true
},
{
path: '/mygame',
name: 'MyGame',
component: () => import('../views/MyGame.vue')
}
]
......
<template>
<div>MyGame</div>
<OXTable />
</template>
<script>
export default {}
import OXTable from '../components/OXTable.vue'
export default {
components: {
OXTable
}
}
</script>
<style></style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment