12345678910111213141516171819202122232425262728 |
- <link rel="stylesheet" href="/assets/libs/element-ui/index.css">
- <link rel="stylesheet" href="/assets/dist/component/main.css">
- <style>
- [v-cloak]{ display:none}
- @media screen and (max-width:750px) {
- .el-dialog{
- width: 90%;
- overflow-x: scroll;
- }
- .el-col-12{
- padding-left: 15px;
- width: 90%;
- overflow-x: scroll;
- }
- #subscribe .bg-image{
- width: 295px;
- }
- }
- </style>
- <div id="sign" v-cloak>
- <sign-form
- :type="type"
- :text="text"
- :text_split="text_split"
- >
- </sign-form>
- </div>
|