index.js 455 B

1234567891011121314151617181920
  1. define([
  2. 'text!components/base_agree/index.html',
  3. 'css!components/base_agree/index.css'
  4. ], function(html) {
  5. return {
  6. props: {
  7. agreeVisible: {
  8. type: Boolean,
  9. default: false
  10. },
  11. agreeContent: {
  12. type: Object,
  13. default: function () {
  14. return {};
  15. }
  16. }
  17. },
  18. template: html
  19. };
  20. });