经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » HTMLCSS » CSS » 查看文章
Vue创建头部组件示例
来源:cnblogs  作者:DonlyLuik  时间:2018/10/23 9:04:58  对本文有异议
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="utf-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title>Page Title</title>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>
  10. <style>
  11. * {
  12. margin: 0;
  13. padding: 0;
  14. }
  15. li {
  16. list-style: none
  17. }
  18. body {
  19. height: 2000px;
  20. overflow: hidden;
  21. }
  22. .header {
  23. width: 100%;
  24. height: 40px;
  25. background: #e1e1e1;
  26. text-align: center;
  27. line-height: 40px;
  28. position: fixed;
  29. }
  30. .header button {
  31. padding: 0rem 0.2rem;
  32. height: 40px;
  33. top: 0;
  34. }
  35. .header button:nth-of-type(1) {
  36. position: fixed;
  37. left: 0;
  38. }
  39. .header button:nth-of-type(2) {
  40. position: fixed;
  41. right: 0;
  42. }
  43. </style>
  44. </head>
  45.  
  46. <body>
  47. <div id="app">
  48. <custom-header :title="title">
  49. <button slot="left">返回</button>
  50. </custom-header>
  51. </div>
  52.  
  53. <template id="header">
  54. <div class="header">
  55. <slot name="left"></slot>
  56. <span>{{title}}</span>
  57. <slot name="right"></slot>
  58. </div>
  59. </template>
  60.  
  61. <script>
  62. Vue.component("custom-header", {
  63. template: '#header',
  64. props: ["title"]
  65. });
  66. //多插槽的使用,则使用name属性来指定要插入的位置
  67. var vm = new Vue({
  68. el: '#app',
  69. data: {
  70. title: "通讯录"
  71. },
  72. components: {
  73. }
  74. });
  75. </script>
  76.  
  77. </body>
  78.  
  79. </html>

 

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号