UNPKG
@dspacev-bundle/vue-cesium
Version:
latest (3.24.2)
3.24.2
3.24.1
3.15.2
3.15.1
3.1.5
3.1.4
Vue 3.x components for CesiumJS.
github.com/zouyaoji/vue-cesium
zouyaoji/vue-cesium
@dspacev-bundle/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