浏览代码

add meta args (#1158)

jiangmiemie 1 年之前
父节点
当前提交
0a4d067b42
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      pynecone/components/base/meta.py

+ 3 - 0
pynecone/components/base/meta.py

@@ -41,6 +41,9 @@ class Meta(Component):
     # The type of metadata value.
     property: Optional[str] = None
 
+    # The type of metadata value.
+    http_equiv: Optional[str] = None
+
 
 class Description(Meta):
     """A component that displays the title of the current page."""