vue复合组件实现注册表单功能
程序员文章站
2022-07-06 20:54:46
本文实例为大家分享了vue注册表单的具体代码,供大家参考,具体内容如下
本文实例为大家分享了vue注册表单的具体代码,供大家参考,具体内容如下
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/vue.js"></script> </head> <body> <div id="container"> <p>{{msg}}</p> <my-article></my-article> </div> <script> //要采用组件化的方式来编写页面, // 把任何一个可被重用的元素封装成组件 // everything is component vue.component("my-title",{ template:`<div> <h1>清风手纸</h1> <h4>原木</h4> </div>` }) vue.component("my-content",{ //一个就可以用引号或者`` template:'<p>源于纯净,归于健康</p>' }) vue.component("my-article",{ //当调用多个组件时要用``符号,而且要用顶层标签包含 template:` <div> <my-title></my-title> <my-content></my-content> </div> ` }) new vue({ el:"#container", data:{ msg:"hello vuejs" } }) </script> </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/vue.js"></script> </head> <body> <div id="container"> <p>{{msg}}</p> <!--调用根组件 --> <my-form></my-form> </div> <script> //创建组件my-user vue.component("my-user",{ template:` <label>用户名:</label> ` }) vue.component("user-input",{ template:` <input type="text" placeholder="请输入用户名"/> ` }) vue.component("my-pwd",{ template:` <label>密码:</label> ` }) vue.component("pwd-input",{ template:` <input type="text" placeholder="请输入密码"/> ` }) vue.component("my-login",{ template:` <button>登录</button> ` }) vue.component("my-resign",{ template:` <button>注册</button> ` }) //复合组件作为根组件名字必须是烤串式的,驼峰的会报错 vue.component("my-form",{ //可以用table、form、div等…… template:` <form> <my-user></my-user> <user-input></user-input> <br> <my-pwd></my-pwd> <pwd-input></pwd-input> <br> <my-resign></my-resign> <my-login></my-login> //写法或者 <my-login/> </form> ` }) new vue({ el:"#container", data:{ msg:"hello vuejs" } }) </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: vue自定义过滤器创建和使用方法详解
下一篇: jquery实现左右轮播图效果