UNPKG

@pluginarch/create-parch

Version:

this is way to create a ui project

40 lines (39 loc) 1.77 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web Component</title> </head> <body> <div style="margin: 10px "> <div style="margin: 30px 0;"> <hd-button>按钮</hd-button> <hd-button type="primary">按钮</hd-button> <hd-button type="success">按钮</hd-button> <hd-button type="warning">按钮</hd-button> <hd-button type="danger">按钮</hd-button> <hd-button type="info">按钮</hd-button> </div> <div style="margin-bottom: 30px;"> <hd-button round="true">圆角按钮</hd-button> <hd-button type="primary" round="true">圆角按钮</hd-button> <hd-button type="success" round="true">圆角按钮</hd-button> <hd-button type="warning" round="true">圆角按钮</hd-button> <hd-button type="danger" round="true">圆角按钮</hd-button> <hd-button type="info" round="true">圆角按钮</hd-button> </div> <div style="margin-bottom: 30px;"> <hd-button >默认按钮</hd-button> <hd-button size="medium">中等按钮</hd-button> <hd-button size="small">小型按钮</hd-button> <hd-button size="mini">超小按钮</hd-button> <hd-button round="true">默认按钮</hd-button> <hd-button size="medium" round="true">中等按钮</hd-button> <hd-button size="small" round="true">小型按钮</hd-button> <hd-button size="mini" round="true">超小按钮</hd-button> </div> </div> </body> </html> <script type="text/javascript" src="./iframeSandBox.js"></script> <script type="text/javascript" src="./button.js"></script>