index.js 242 B

1234567891011121314
  1. define([
  2. 'text!./index.html',
  3. 'css!./index.css'
  4. ], function(html) {
  5. return {
  6. props: {
  7. href: {
  8. type: String,
  9. default: ''
  10. }
  11. },
  12. template: html
  13. };
  14. });