forked from fanruan/demo-show-type
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.
21 lines
522 B
21 lines
522 B
5 years ago
|
package com.fr.plugin.showtype;
|
||
|
|
||
|
import com.fr.web.struct.Component;
|
||
|
import com.fr.web.struct.browser.RequestClient;
|
||
|
import com.fr.web.struct.category.ScriptPath;
|
||
|
|
||
|
/**
|
||
|
* @Author Roger
|
||
|
* @Date 2020/8/18 19:46
|
||
|
* @Version 10.0
|
||
|
*/
|
||
|
public class NewPreviewComponent extends Component {
|
||
|
|
||
|
public static final NewPreviewComponent KEY = new NewPreviewComponent();
|
||
|
|
||
|
@Override
|
||
|
public ScriptPath script(RequestClient requestClient) {
|
||
|
return ScriptPath.build("com/fr/plugin/showtype/web/show_types.js");
|
||
|
}
|
||
|
}
|