UNPKG

st-common-core

Version:

小尾巴前端通用核心库

12 lines (11 loc) 440 B
const _ = { // 链接路径的正则表达式 LINK_PATH_REG: /^(https?:\/\/)?(www\.)?(([a-zA-Z0-9-]+\.)+([a-zA-Z]{2,})(\/[^\s]*)*)$/, // 路由路径的正则表达式 ROUTE_PATH_REG: /^(\/[a-zA-Z0-9-_]+(\/[a-zA-Z0-9-_]+)*\/?(\?([a-zA-Z0-9-_]+=[a-zA-Z0-9-_]*)(&[a-zA-Z0-9-_]+=[a-zA-Z0-9-_]*)*)?)?$/, // Vue 组件路径的正则表达式 VUE_COMPONENT_PATH_REG: /^(\/[a-zA-Z0-9-_]+)+(\.vue)$/ }; export { _ as PathRegConst };