2019-11-21 21:26:14 +00:00
|
|
|
<template>
|
2019-11-22 07:18:47 +00:00
|
|
|
<div id="app" class="py-10">
|
|
|
|
|
<div class="max-w-6xl mx-auto px-4">
|
|
|
|
|
<TalksTable :data="data"/>
|
|
|
|
|
</div>
|
2019-11-21 21:26:14 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2019-11-22 07:18:47 +00:00
|
|
|
import data from '@/data'
|
|
|
|
|
import TalksTable from '@/components/TalksTable'
|
2019-11-21 21:26:14 +00:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'app',
|
2019-11-22 07:18:47 +00:00
|
|
|
|
2019-11-21 21:26:14 +00:00
|
|
|
components: {
|
2019-11-22 07:18:47 +00:00
|
|
|
TalksTable
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
data
|
|
|
|
|
}
|
2019-11-21 21:26:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2019-11-22 07:18:47 +00:00
|
|
|
<style src="@/assets/css/tailwind.css"></style>
|