mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-28 04:48:56 +08:00
32 lines
922 B
Markdown
32 lines
922 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Panel title="我是标题">
|
|
<Wb-button icon="md-arrow-round-back" slot="action"></Wb-button>
|
|
<Wb-form label-position="left" :label-width="100">
|
|
<Form-item label="输入框">
|
|
<wb-input placeholder="请输入"></wb-input>
|
|
</Form-item>
|
|
<Form-item label="密码输入框">
|
|
<wb-input placeholder="请输入" type="password"></wb-input>
|
|
</Form-item>
|
|
<Form-item label="数字输入框">
|
|
<wb-input placeholder="请输入" type="number"></wb-input>
|
|
</Form-item>
|
|
<Form-item label="数字输入框">
|
|
<wb-input placeholder="请输入" type="number"></wb-input>
|
|
</Form-item>
|
|
</Wb-form>
|
|
</Panel>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
``` |