UNPKG
oxe
Version:
latest (6.0.8)
6.0.8
6.0.7
6.0.6
6.0.5
6.0.4
6.0.1
6.0.0
5.2.9
5.2.8
5.2.7
5.2.6
5.2.5
5.2.4
5.2.3
5.2.2
5.2.1
5.2.0
5.1.0
4.16.0
4.14.0
4.13.0
4.12.0
4.11.4
4.11.3
4.11.2
4.11.1
4.11.0
4.10.1
4.10.0
4.9.2
4.9.1
4.9.0
4.8.1
4.8.0
4.7.3
4.7.2
4.7.1
4.7.0
4.6.0
4.5.0
4.4.0
4.3.0
4.2.0
4.1.0
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
3.20.3
3.20.2
3.20.1
3.20.0
3.19.3
3.19.2
3.19.1
3.19.0
3.18.0
3.17.1
3.17.0
3.16.1
3.16.0
3.15.12
3.15.11
3.15.10
3.15.9
3.15.8
3.15.7
3.15.6
3.15.5
3.15.4
3.15.3
3.15.2
3.15.1
3.15.0
3.14.3
3.14.2
3.14.1
3.14.0
3.13.2
3.13.1
3.13.0
3.12.0
3.11.3
3.11.2
3.11.1
3.11.0
3.10.5
3.9.4
3.9.3
3.9.2
3.9.1
3.9.0
3.8.0
3.7.0
3.6.14
3.6.13
3.6.12
3.6.11
3.6.10
3.6.9
3.6.8
3.6.6
3.6.5
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.5.1
3.5.0
3.4.10
3.4.9
3.4.8
3.4.7
3.4.6
3.4.5
3.4.4
3.4.3
3.4.2
3.4.0
3.3.0
3.2.1
3.2.0
3.1.12
3.1.10
3.1.9
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.0
3.0.1
3.0.0
2.9.9
2.9.8
2.9.7
2.9.6
2.9.5
2.9.3
2.9.2
2.9.1
2.9.0
2.8.24
2.8.23
2.8.22
2.8.21
2.8.18
2.8.14
2.8.13
2.8.12
2.8.11
2.8.10
2.8.9
2.8.2
2.8.1
2.8.0
2.7.5
2.7.4
2.7.3
2.7.2
2.7.1
2.7.0
2.6.8
2.6.7
2.6.6
2.6.5
2.6.4
2.6.3
2.6.2
2.6.1
2.6.0
2.5.17
2.5.16
2.5.15
2.5.14
2.5.13
2.5.12
2.5.11
2.5.10
2.5.9
2.5.8
2.5.7
2.5.6
2.5.5
2.5.3
2.5.1
2.5.0
2.4.0
2.3.2
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.12
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.10.7
1.10.6
1.10.5
1.10.4
1.10.3
1.10.2
1.10.1
1.10.0
1.9.14
1.9.13
1.9.12
1.9.11
1.9.10
1.9.9
1.9.8
1.9.7
1.9.6
1.9.5
1.9.4
1.9.3
1.9.2
1.9.1
A mighty tiny web components framework/library
github.com/vokeio/oxe
vokeio/oxe
oxe
/
src
/
methods.js
18 lines
(11 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
Utility from
'./utility.js'
;
const
DATA = {}; export default {
get
data
() {
return
DATA; },
get
(path) {
return
Utility.getByPath(
this
.
data
, path); },
set
(path,
data
) {
return
Utility.setByPath(
this
.
data
, path,
data
); } };