• This project
    • Loading...
  • Sign in

qingger / allProject

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • allProject
  • Personal
  • Shipfi
  • Vue
  • shopWeb
  • src
  • App.vue
  • shipengfei's avatar
    Code Update · 92a52df2
    92a52df2 Browse Files
    shipengfei authored 2017-03-04 11:09:35 +0800
App.vue 415 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template>

    <div id="app">
        <div class="content-top"></div>
        <div class="content">
            <div class="content-body">
                <router-view></router-view>

            </div>
            <div class="sidebar"></div>
        </div>

    </div>
</template>

<script>
    import './static/js/clamp.js'
    import store from './vuex/store';
    export default {
        store
    }
</script>