This commit is contained in:
张成
2026-03-24 16:07:02 +08:00
commit aa8eaa6ccd
121 changed files with 34042 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/**
* 在业务组件中使用配置的示例(按需复制到 .vue 或独立模块)
*/
export const exampleComponent = {
mounted() {
console.log('title:', this.$config.title)
console.log('apiUrl:', this.$config.apiUrl)
}
}