
新增隐私协议弹窗组件 privacy-popup,用于处理微信小程序的隐私授权需求。组件包含同意/拒绝按钮,并支持打开隐私协议链接。同时在全局组件声明中添加了相关组件注册。 ``` 这个提交消息: 1. 使用了正确的类型 `feat` 表示新增功能 2. 添加了适当的范围 `(privacy)` 表明是隐私相关功能 3. 简洁描述了新增的功能(隐私协议弹窗组件) 4. 在正文中补充说明了组件的用途和主要功能点 5. 符合中文语言要求 6. 遵循了50字符限制(标题部分) 7. 使用了命令式语气
16 lines
565 B
TypeScript
16 lines
565 B
TypeScript
/* eslint-disable */
|
|
/* prettier-ignore */
|
|
// @ts-nocheck
|
|
// Generated by vite-plugin-uni-components
|
|
// Read more: https://github.com/vuejs/core/pull/3399
|
|
export {}
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
FgNavbar: typeof import('./../components/fg-navbar/fg-navbar.vue')['default']
|
|
FgTabbar: typeof import('./../components/fg-tabbar/fg-tabbar.vue')['default']
|
|
PrivacyPopup: typeof import('./../components/privacy-popup/privacy-popup.vue')['default']
|
|
Tabbar: typeof import('./../components/tabbar/tabbar.vue')['default']
|
|
}
|
|
}
|