vue-learning/入门/cli/hello-cli/src/App.vue

44 lines
682 B
Vue
Raw Normal View History

2022-11-29 06:29:26 +00:00
<!--
* @Author: Kane
* @Date: 2022-11-22 17:50:49
* @LastEditors: Kane
2022-12-02 12:16:03 +00:00
* @LastEditTime: 2022-12-02 16:59:09
2022-11-29 06:29:26 +00:00
* @FilePath: \hello-cli\src\App.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
2022-11-22 09:57:20 +00:00
<template>
2022-11-29 06:29:26 +00:00
<div class="content">
2022-12-02 15:11:28 +00:00
<div class="banner">
<h1>学习路由</h1>
</div>
<div class="container">
<div class="nav"></div>
<div class="view"></div>
</div>
2022-11-29 06:29:26 +00:00
</div>
2022-11-22 09:57:20 +00:00
</template>
<script>
export default {
2022-11-29 06:29:26 +00:00
name: "App",
2022-12-02 15:11:28 +00:00
components: {},
methods: {},
2022-11-29 06:29:26 +00:00
};
2022-11-22 09:57:20 +00:00
</script>
<style>
#app {
2022-11-29 12:23:35 +00:00
background-color: #f4f5f7;
}
.content {
2022-12-02 15:11:28 +00:00
background-color: #fff;
2022-11-22 09:57:20 +00:00
}
2022-11-29 12:23:35 +00:00
hr {
width: 100%;
border: 1px solid 1px;
}
2022-11-22 09:57:20 +00:00
</style>