# Guide
# Getting Started
# Setup
$ npm install vue-responsive-dash
1
# How to use with Vue
<template>
<div id="app">
<dashboard :id="'dashExample'">
<dash-layout v-for="layout in dlayouts" v-bind="layout" :debug="true" :key="layout.breakpoint">
<dash-item v-for="item in layout.items" v-bind.sync="item" :key="item.id">
<div class="content"></div>
</dash-item>
</dash-layout>
</dashboard>
</div>
</template>
<script>
import { Dashboard, DashLayout, DashItem } from "vue-responsive-dash";
export default {
name: "App",
components: {
Dashboard,
DashLayout,
DashItem
},
data() {
return {
dlayouts: [
{
breakpoint: "xl",
numberOfCols: 12,
items: [
{ id: "1", x: 0, y: 0, width: 1, height: 1 },
{ id: "2", x: 1, y: 0, width: 2, height: 1 },
]
},
{
breakpoint: "lg",
breakpointWidth: 1200,
numberOfCols: 10,
items: [
{ id: "1", x: 0, y: 0, width: 1, height: 1 },
{ id: "2", x: 1, y: 0, width: 2, height: 1 },
]
},
{
breakpoint: "md",
breakpointWidth: 996,
numberOfCols: 8,
items: [
{ id: "1", x: 0, y: 0, width: 1, height: 1 },
{ id: "2", x: 1, y: 0, width: 2, height: 1 },
]
},
{
breakpoint: "sm",
breakpointWidth: 768,
numberOfCols: 4,
items: [
{ id: "1", x: 0, y: 0, width: 1, height: 1 },
{ id: "2", x: 1, y: 0, width: 2, height: 1 },
]
},
{
breakpoint: "xs",
breakpointWidth: 480,
numberOfCols: 2,
items: [
{ id: "1", x: 0, y: 0, width: 1, height: 1 },
{ id: "2", x: 1, y: 0, width: 1, height: 1 },
]
},
{
breakpoint: "xxs",
breakpointWidth: 0,
numberOfCols: 1,
items: [
{
id: "1",
x: 0,
y: 0,
width: 1,
height: 1
},
{ id: "2", x: 0, y: 1, width: 1, height: 1 }
]
}
]
};
}
};
</script>
<style>
.content {
height: 100%;
width: 100%;
border: 2px solid #42b983;
border-radius: 5px;
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Grid Item Child Component
See example above. The Grid Item object can be passed to the child component via props or injection. Typically the child component will look at the grid Item ID (which is unique) and decide what to render via a data/computed variable or VUEX.
# Support
Please give a ⭐️ if this project helped you!
# Contributing
If you have any questions or requests or want to contribute to vue-responsive-dash
or other packages, please write the issue or give me a Pull Request freely.
# Bug Report
If you find a bug, please report to us opening a new Issue on GitHub.