Vue移動端框架Mint UI教程-跳轉新頁面(四)

前三節寫了vue的移動端框架的入門篇章,今天接着寫,今天寫的教程其實很簡單,在以前的基礎上,新建一個界面,而且進行跳轉新頁面。vue



Vue移動端框架Mint UI教程-搭建環境引入框架(一)
https://www.jianshu.com/p/874e5152b3c5git

Vue移動端框架Mint UI教程-底部導航欄(二)
https://www.jianshu.com/p/56e887cbb660github

Vue移動端框架Mint UI教程-組件的使用(三)
https://www.jianshu.com/p/5ec1e2d2f652框架

1:首先,在pages底下新建一個新的頁面fa.vueide


 
5640239-d9be015f8d214667.png
 

在頁面裏面寫一些代碼測試

<template>
  <div id="index">
    我是新頁面
  </div>
</template>
<style scoped>
  #index{
    display: flex;
    justify-content: center;
    margin-top: 100px;
  }
</style>
<script>
  export default{}
</script>

2:打開index.js文件
將這個新的界面配置到router文件夾下的index.js中去:flex

import Fa from '../pages/fa.vue'
{
      path: '/fa', component: Fa
  }
 
5640239-8e6b08302c8e166d.png
 

3:在當前的頁面裏面寫跳轉方法ui

<li><mt-button size="large" @click="go">測試跳轉</mt-button></li>

methods: {
go() {
this.$router.push('/fa');//要跳轉的界面
},}
 
5640239-5f0331fa1b3261e7.png
 

4:點擊測試:能夠看到實現的效果。this


 
5640239-4fde1f70dce9db43.gif
相關文章
相關標籤/搜索