package com.java110.web.components; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; @Component(value="vue_test") public class VueTestComponent { /** * 测试版本号 * @return */ public ResponseEntity getTestVersion(String msg){ return new ResponseEntity(msg+ " vue test v0.0.1", HttpStatus.OK); } }