]> Softwares of Agnibho - dietsurvey.git/blob - src/input.vue
Table scroll on narrow screen
[dietsurvey.git] / src / input.vue
1 <!--
2 **********************************************************************
3 * Title: DietSurvey
4 * Description: Nutritional Assessment App
5 * Author: Agnibho Mondal
6 * Website: http://code.agnibho.com
7 **********************************************************************
8 Copyright (c) 2016 Agnibho Mondal
9 All rights reserved
10 **********************************************************************
11 This file is part of DietSurvey.
12
13 DietSurvey is free software: you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 DietSurvey is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with DietSurvey. If not, see <http://www.gnu.org/licenses/>.
25 **********************************************************************
26 -->
27 <template>
28 <div class="row">
29 <div class="col-sm-6">
30 <family :data-obj="dataObj"></family>
31 </div>
32 <div class="col-sm-6">
33 <food :data-obj="dataObj" :data-ref="dataRef"></food>
34 </div>
35 </div>
36 </template>
37
38 <script>
39 import Family from "./family.vue";
40 import Food from "./food.vue";
41 export default {
42 name:"Input",
43 props:["dataObj", "dataRef"],
44 components: {"family": Family, "food": Food}
45 }
46 </script>