index.js 332 B

1234567891011121314151617
  1. define([
  2. 'require',
  3. 'text!./index.html',
  4. 'css!./index.css'
  5. ], function (require, html) {
  6. return {
  7. props: {
  8. recommend: {
  9. type: Object,
  10. default: function () {
  11. return {};
  12. }
  13. }
  14. },
  15. template: html
  16. };
  17. });