mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-07 23:57:20 +08:00
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
import 'vue'
|
|
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
$theme: {
|
|
primaryColor: string
|
|
pageStyle: string
|
|
navColor: string
|
|
navBgColor: string
|
|
title: string
|
|
}
|
|
}
|
|
}
|