rt-sim-training-client/src/App.vue

13 lines
123 B
Vue
Raw Normal View History

2019-07-02 16:29:52 +08:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
2019-08-08 11:29:03 +08:00
};
2019-07-02 16:29:52 +08:00
</script>