Mint-UI 移动首页开发 - header导航、banner轮播图

版权声明:本文为博主原创文章,允许转载,但转载必须注明出处并附带首发链接 https://blog.csdn.net/qq_35393869/article/details/87093150

Mint-UI 移动首页style排版问题:header导航、banner轮播图、footer底部版权··· ···


资源预览:

  1. 中文 2.x官方文档(含演示地址): 文档首页

  2. 中文 2.x官方文档(含演示地址): 查看 · header顶部导航

  3. 中文 2.x官方文档(含演示地址): 查看 · banner轮播图

  4. 中文 2.x官方文档(含演示地址): footer底部版权 · 查看Tabbar底部选项卡

    footer底部选项卡,点击 tab 会切换显示的页面。依赖 tab-item 组件。


注意:Mint-UI 关于事件绑定

Vue 2.0 中,为 自定义组件绑定原生事件 必须使用 .native 修饰符:

<my-component @click.native="handleClick">    Click Me   </my-component>

从易用性的角度出发,我们对 Button 组件进行了处理,使它可以监听 click 事件:

<mt-button @click="handleButtonClick">    Click Me    </mt-button>

注意: 但是对于其他组件,还是需要添加 .native 修饰符。


以上就是关于“Mint-UI 移动首页开发 - header导航、banner轮播图 ” 的全部内容。

猜你喜欢

转载自blog.csdn.net/qq_35393869/article/details/87093150