| 12345678910111213141516171819 |
- <style>
- .com-test {
- background: #ff4544;
- padding: 10px 20px;
- color: #fff;
- border-radius: 2px;
- }
- </style>
- <template id="com-test">
- <div class="com-test">
- APPTEST组件
- </div>
- </template>
- <script>
- Vue.component('com-test', {
- template: '#com-test',
- });
- </script>
|