index.js 186 B

1234567891011
  1. define([
  2. 'require',
  3. 'text!./index.html',
  4. 'css!./index.css'
  5. ], function(require, html) {
  6. return {
  7. props: {},
  8. methods: {},
  9. template: html
  10. };
  11. });