zoukankan      html  css  js  c++  java
  • vue

     

    HTML:a

    小程序:navigator

    Vue:router-link

     

    1. router-link => a标签

     

    2. javascript标签跳转页面

      2.1

       2.2

     

    3. 常用方法之跳上一页/下一页

     3.1

     

      3.2

     

     

     1 <template>
     2   <div id="app">
     3     <img src="./assets/logo.png">
     4     <router-view/>
     5     <router-link to="/">[跳转到主页]</router-link>
     6     <router-link to="/login">[登录]</router-link>
     7     <router-link to="/logout">[登出]</router-link>
     8     
     9     <!-- javascript跳转页面 -->
    10     <button @click="goHome">[跳转到主页]</button>
    11     
    12     <!-- 回到上一页 -->
    13     <button @click="upPage">[上一页]</button>
    14     <button @click="downPage">[下一页]</button>
    15     
    16     <!-- 回到下一页 -->
    17 
    18   </div>
    19 </template>
    20 
    21 <script>
    22 export default {
    23   name: "App",
    24   methods: {
    25     // 跳转页面方法
    26     goHome() {
    27       this.$router.push("/");
    28     },
    29     upPage() {
    30       //  后退一步记录,等同于 history.back()
    31       this.$router.go(-1);
    32     },
    33     downPage() {
    34       // 在浏览器记录中前进一步,等同于 history.forward()
    35       this.$router.go(1);
    36     }
    37   }
    38 };
    39 </script>
    40 
    41 <style lang='scss' type='text/css'>
    42 #app {
    43   font-family: "Avenir", Helvetica, Arial, sans-serif;
    44   -webkit-font-smoothing: antialiased;
    45   -moz-osx-font-smoothing: grayscale;
    46   text-align: center;
    47   color: #f00;
    48   margin-top: 60px;
    49   img {
    50     // width: 200px;
    51     height: 100px;
    52   }
    53 }
    54 </style>

     

     

  • 相关阅读:
    五大常用算法之二:动态规划算法
    五大常用算法之一:分治算法
    c++控制台程序实现定时器
    Oracle sqlplus设置显示格式命令详解
    存储的基本概念谈
    类UNIX操作系统概念
    从源代码到可执行文件
    SQL更改表字段为自增标识
    enum和int、string的转换操作
    SEO技巧汇集
  • 原文地址:https://www.cnblogs.com/cisum/p/9620992.html
Copyright © 2011-2022 走看看