27 lines
412 B
Vue
27 lines
412 B
Vue
<style type="text/css" scoped></style>
|
|
</style>
|
|
|
|
<template>
|
|
<div>
|
|
I'm a calednar yo
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: [
|
|
'graphOptions', // options associated with this graph
|
|
'tempChartDays', // number of days to display
|
|
'cycleData', // all users metric data
|
|
],
|
|
data: function(){
|
|
return {
|
|
openModel:true,
|
|
}
|
|
},
|
|
methods: {
|
|
closeModel(){
|
|
},
|
|
}
|
|
}
|
|
</script> |