-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
42 lines (40 loc) · 746 Bytes
/
app.vue
File metadata and controls
42 lines (40 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<template>
<div>
<p>app.vue img</p>
<img src="./img/test.jpg" class="img" />
<vTitle></vTitle>
<vCount v-model="count"></vCount>
<p>app.vue count {{count}}</p>
<br/>
<vAxios></vAxios>
</div>
</template>
<script>
import vTitle from './components/title.vue';
import vCount from './components/count.vue';
import vAxios from './components/axios.vue';
export default {
name: 'app',
components: {
vTitle,
vCount,
vAxios
},
data() {
return {
count: 10
};
}
}
</script>
<style scoped>
div {
color: goldenrod;
font-size: 18px;
}
img {
display: block;
width: 150px;
height: 150px;
}
</style>