UNPKG
vue-cesium
Version:
beta (3.0.1-beta.0)
latest (3.2.9)
next (3.1.2)
3.2.9
3.2.8
3.2.7
3.2.6
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
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.1
3.1.0
3.0.19
3.0.18
3.0.17
3.0.16
3.0.15
3.0.14
3.0.13
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2-beta.13
3.0.2-beta.12
3.0.2-beta.11
3.0.2-beta.10
3.0.2-beta.9
3.0.2-beta.8
3.0.2-beta.7
3.0.2-beta.6
3.0.2-beta.5
3.0.2-beta.4
3.0.2-beta.3
3.0.2-beta.2
3.0.2-beta.1
3.0.1-beta.15
3.0.1-beta.14
3.0.1-beta.13
3.0.1-beta.12
3.0.1-beta.10
3.0.1-beta.9
3.0.1-beta.8
3.0.1-beta.7
3.0.1-beta.6
3.0.1-beta.5.2
3.0.1-beta.4
3.0.1-beta.3
3.0.1-beta.2
3.0.1-beta.1
3.0.1-beta.0
2.4.2
2.4.1
2.4.0
2.3.15
2.3.14
2.3.13
2.3.12
2.3.11
2.3.10
2.3.9
2.3.8
2.3.7
2.3.6
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.12
2.2.11
2.2.10
2.2.9
2.2.8
2.2.7
2.2.6
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.9
2.1.8
2.1.7
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
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
2.0.0-beta.4
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
2.0.0-beta.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.22
0.0.21
0.0.20
0.0.19
0.0.18
0.0.17
0.0.16
0.0.14
0.0.13
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
Vue 3.x components for CesiumJS.
github.com/zouyaoji/vue-cesium
zouyaoji/vue-cesium
vue-cesium
/
es
/
composables
/
private
/
use-dark.mjs
16 lines
(13 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{ computed }
from
'vue'
;
"use strict"
;
const
useDarkProps = {
dark
: {
type
:
Boolean
,
default
:
null
} };
function
useDark
(
props
) {
return
computed
(
() =>
props.
dark
); }
export
{ useDark
as
default
, useDarkProps };
//# sourceMappingURL=use-dark.mjs.map