14 lines
183 B
Vue
14 lines
183 B
Vue
<template>
|
|
<div class="table-container"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PlayTable',
|
|
data() {
|
|
return {};
|
|
},
|
|
created() {},
|
|
methods: {},
|
|
};
|
|
</script> |