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
363 B
21 lines
363 B
<?php
|
|
|
|
|
|
namespace App\Admin\Common;
|
|
|
|
|
|
class LinkUrl
|
|
{
|
|
/**
|
|
* js
|
|
*/
|
|
const VUE_JS = 'https://cdn.jsdelivr.net/npm/vue';
|
|
const ELEMENT_UI_JS = 'https://unpkg.com/element-ui/lib/index.js';
|
|
|
|
|
|
/**
|
|
* css
|
|
*/
|
|
const ELEMENT_UI_CSS="https://unpkg.com/element-ui/lib/theme-chalk/index.css";
|
|
const DETAIL_CSS = 'css/detail.css';
|
|
}
|