12345678910111213141516171819202122232425262728 |
- define([
- 'text!./index.html',
- 'css!./index.css'
- ], function(html) {
- return {
- props: {
- recommend: {
- type: Object,
- default: function () {
- return {};
- }
- },
- articleList: {
- type: Array,
- default: function () {
- return [];
- }
- }
- },
- data: function () {
- return {};
- },
- methods: {
- },
- template: html
- };
- });
|