forked from fanruan/demo-system-management
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
581 B
25 lines
581 B
package com.fr.plugin.web; |
|
|
|
import com.fr.web.struct.Component; |
|
import com.fr.web.struct.category.ScriptPath; |
|
import com.fr.web.struct.category.StylePath; |
|
|
|
|
|
public class FanruanComponent extends Component { |
|
|
|
public static FanruanComponent KEY = new FanruanComponent(); |
|
|
|
private FanruanComponent(){ |
|
|
|
} |
|
|
|
@Override |
|
public ScriptPath script() { |
|
return ScriptPath.build("/com/fr/plugin/web/resources/js/bundle.js"); |
|
} |
|
|
|
@Override |
|
public StylePath style() { |
|
return StylePath.build("/com/fr/plugin/web/resources/css/bundle.min.css"); |
|
} |
|
} |