refactor: only run useCssModule code in non-global builds

This commit is contained in:
Evan You 2020-02-18 13:23:30 -05:00
parent e8e67729cb
commit 86464e8c04

View File

@ -2,7 +2,8 @@ import { getCurrentInstance } from '../component'
import { EMPTY_OBJ } from '@vue/shared'
import { warn } from '../warning'
export function useCSSModule(name = '$style'): Record<string, string> {
export const useCSSModule = (name = '$style'): Record<string, string> => {
if (!__GLOBAL__) {
const instance = getCurrentInstance()!
if (!instance) {
__DEV__ && warn(`useCSSModule must be called inside setup()`)
@ -20,4 +21,10 @@ export function useCSSModule(name = '$style'): Record<string, string> {
return EMPTY_OBJ
}
return mod as Record<string, string>
} else {
if (__DEV__) {
warn(`useCSSModule() is not supported in the global build.`)
}
return EMPTY_OBJ
}
}