App.vue 705 Bytes
<template>
  <div id="app">
    <table>
      <tbody>
      <tr>
        <td>
          <router-link to="/home-map">首页地图</router-link>
        </td>
        <td>
          <router-link to="/dk-map">加载地块</router-link>
        </td>
        <td>
          <router-link to="/xzq-map">行政区定位</router-link>
        </td>
      </tr>
      </tbody>
    </table>
    <router-view></router-view>
  </div>
</template>

<script>

export default {
  name: 'App'
}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>