1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <template>
| <div>
| test
| <!-- 2019070900000001 -->
| <span class="test"></span>
| </div>
| </template>
| <script>
| export default {}
| </script>
|
| <style lang="postcss" scoped>
| .test {
| font-family: element-icons;
| /* line-height: 1; */
| &::before {
| content: '\E6EA';
| }
| }
| </style>
|
|