Skip to content

Commit 0fabda7

Browse files
committed
feat: useCssModules
1 parent 9b4e179 commit 0fabda7

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

scripts/config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ function genConfig(name) {
279279
const vars = {
280280
__VERSION__: version,
281281
__DEV__: `process.env.NODE_ENV !== 'production'`,
282-
__TEST__: false
282+
__TEST__: false,
283+
__GLOBAL__: opts.format === 'umd' || name.includes('browser')
283284
}
284285
// feature flags
285286
Object.keys(featureFlags).forEach(key => {

src/global.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
declare const __DEV__: boolean
22
declare const __TEST__: boolean
3+
declare const __GLOBAL__: boolean
34

45
interface Window {
56
__VUE_DEVTOOLS_GLOBAL_HOOK__: DevtoolsHook

src/v3/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ export { useSlots, useAttrs, mergeDefaults } from './apiSetup'
7676
export { nextTick } from 'core/util/next-tick'
7777
export { set, del } from 'core/observer'
7878

79+
export { useCssModule } from './sfc-helpers/useCssModule'
80+
7981
/**
8082
* @internal type is manually declared in <root>/types/v3-define-component.d.ts
8183
*/

src/v3/sfc-helpers/useCssModule.ts

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { emptyObject, warn } from '../../core/util'
2+
import { currentInstance } from '../currentInstance'
3+
4+
export function useCssModule(name = '$style'): Record<string, string> {
5+
/* istanbul ignore else */
6+
if (!__GLOBAL__) {
7+
if (!currentInstance) {
8+
__DEV__ && warn(`useCssModule must be called inside setup()`)
9+
return emptyObject
10+
}
11+
const mod = currentInstance[name]
12+
if (!mod) {
13+
__DEV__ &&
14+
warn(`Current instance does not have CSS module named "${name}".`)
15+
return emptyObject
16+
}
17+
return mod as Record<string, string>
18+
} else {
19+
if (__DEV__) {
20+
warn(`useCssModule() is not supported in the global build.`)
21+
}
22+
return emptyObject
23+
}
24+
}

0 commit comments

Comments
 (0)