Skip to content
Snippets Groups Projects

스탯 전략 페이지 구현-그래프제외

Merged Seungwoo Chung requested to merge 정승우 into master
5 files
+ 184
30
Compare changes
  • Side-by-side
  • Inline

Files

<template>
<div class="app-footer">
<h1>Chart Vue 입니다</h1>
<input v-model="start" placeholder="YYYY-MM-DD">
{{start}}
<button v-on:click="create()">제출</button>
</div>
</template>
<script>
export default{
data(){
return{
start : ""
}
},
methods :
{
create()
{
this.$store.dispatch('addDataToChart');
}
},
mounted()
{
export default {
name: "Chart"
}
}
</script>
<style scoped>
</style>
\ No newline at end of file
Loading