|
@@ -0,0 +1,29 @@
|
|
1
|
+<template>
|
|
2
|
+ <div id="app">
|
|
3
|
+ <img src="./images/logo.png">
|
|
4
|
+ <div>销售端</div>
|
|
5
|
+ </div>
|
|
6
|
+</template>
|
|
7
|
+
|
|
8
|
+<script>
|
|
9
|
+ import 'common/css/reset.css';
|
|
10
|
+ import Hello from 'components/Hello/Hello'
|
|
11
|
+
|
|
12
|
+ export default {
|
|
13
|
+ name: 'app',
|
|
14
|
+ components: {
|
|
15
|
+ Hello
|
|
16
|
+ }
|
|
17
|
+ }
|
|
18
|
+</script>
|
|
19
|
+
|
|
20
|
+<style>
|
|
21
|
+ #app {
|
|
22
|
+ font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
23
|
+ -webkit-font-smoothing: antialiased;
|
|
24
|
+ -moz-osx-font-smoothing: grayscale;
|
|
25
|
+ text-align: center;
|
|
26
|
+ color: #2c3e50;
|
|
27
|
+ margin-top: 60px;
|
|
28
|
+ }
|
|
29
|
+</style>
|