Skip to content

Commit c741edf

Browse files
committedNov 3, 2023
fix
1 parent e7c543f commit c741edf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎app/plugins/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,15 @@ def get_api(self) -> List[Dict[str, Any]]:
8686
def get_form(self) -> Tuple[List[dict], Dict[str, Any]]:
8787
"""
8888
拼装插件配置页面,需要返回两块数据:1、页面配置;2、数据结构
89+
插件配置页面使用Vuetify组件拼装,参考:https://vuetifyjs.com/
8990
"""
9091
pass
9192

9293
@abstractmethod
9394
def get_page(self) -> List[dict]:
9495
"""
9596
拼装插件详情页面,需要返回页面配置,同时附带数据
97+
插件详情页面使用Vuetify组件拼装,参考:https://vuetifyjs.com/
9698
"""
9799
pass
98100

0 commit comments

Comments
 (0)
Please sign in to comment.