ELRIWebSystem/Learning/vue/vue - ex2/src/App.vue

31 lines
522 B
Vue
Raw Normal View History

2023-12-17 03:07:17 +08:00
<template>
<div id="app">
2023-12-18 13:02:23 +08:00
<!-- <img src="./assets/logo.png"> -->
2023-12-17 03:07:17 +08:00
<router-view/>
</div>
</template>
<script>
2023-12-18 13:02:23 +08:00
import HelloWorld from './components/HelloWorld.vue';
import NewPage from './components/NewPage.vue';
2023-12-17 03:07:17 +08:00
export default {
2023-12-18 13:02:23 +08:00
components: {
HelloWorld,
NewPage
}
};
2023-12-17 03:07:17 +08:00
</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>