10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
function changeTheme(theme) {
|
|
if (theme === 'dark') {
|
|
document.body.setAttribute('arco-theme', 'dark');
|
|
} else {
|
|
document.body.removeAttribute('arco-theme');
|
|
}
|
|
}
|
|
|
|
export default changeTheme;
|