gooes
Version:
43 lines (42 loc) • 1.29 kB
HTML
<html lang="zh-Hans">
<head>
<meta charset="UTF-8">
<title>轮子</title>
<style>
*{margin:0; padding:0; box-sizing:border-box;}
html{
--button-height:32px;
--font-size:14px;
--button-bg:white;
--button-active-bg:#eee;
--border-radius:4px;
--color:#333;
--border-color:#999;
--border-color-hover:#666;
}
#app{
margin:20px;
}
body{
font-size:var(--font-size);
}
</style>
<style>
</style>
</head>
<body>
<div id="app">
<g-button :isloading="loading1" @click="loading1 = !loading1">按钮</g-button>
<g-button icon="settings" icon-postion="left" :isloading="loading2" @click="loading2 = !loading2">按钮</g-button>
<g-button icon="settings" icon-postion="right" :isloading="loading3" @click="loading3 = !loading3">按钮</g-button>
<g-button-group>
<g-button icon="left">上一页</g-button>
<g-button>更多</g-button>
<g-button icon="right" icon-postion="right">下一页</g-button>
</g-button-group>
</div>
<script src="./src/app.js"></script>
<script src="//at.alicdn.com/t/font_803628_lklxlok1afn.js"></script>
</body>
</html>