home.vue
680 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
<template>
<div>
<div class="test">
{{message}}
</div>
<div class="test2">
{{message2}}
</div>
</div>
</template>
<script>
export default {
data() {
return {
message: 'test',
message2: 'test2'
};
}
};
</script>
<style>
/* 雪碧图测试 */
.test {
color: green;
background: url("/channel/boys.png");
}
/* 图片测试 */
.test2 {
color: blue;
background: resolve("channel/boys.png");
}
/* 代码检查测试 */
.testError {
background: white;
}
</style>