com-test.php 332 B

12345678910111213141516171819
  1. <style>
  2. .com-test {
  3. background: #ff4544;
  4. padding: 10px 20px;
  5. color: #fff;
  6. border-radius: 2px;
  7. }
  8. </style>
  9. <template id="com-test">
  10. <div class="com-test">
  11. APPTEST组件
  12. </div>
  13. </template>
  14. <script>
  15. Vue.component('com-test', {
  16. template: '#com-test',
  17. });
  18. </script>