-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
1,346 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
import _default from './template/default.js'; | ||
import _water from './template/water.js'; | ||
import _star from './template/star.js'; | ||
import _rect from './template/rect.js'; | ||
import _diamond from './template/diamond.js'; | ||
import _hexagon from './template/hexagon.js'; | ||
import _bar from './template/bar.js'; | ||
import _heart from './template/heart.js'; | ||
import _glitter from './template/glitter.js'; | ||
import _fusion from './template/fusion.js'; | ||
|
||
//基础绘制 | ||
export default { | ||
'default':_default, | ||
'water':_water, | ||
'star':_star | ||
'star':_star, | ||
'rect':_rect, | ||
'diamond':_diamond, | ||
'hexagon':_hexagon, | ||
'bar':_bar, | ||
'heart':_heart, | ||
'glitter':_glitter, | ||
'fusion':_fusion | ||
}; |
Oops, something went wrong.