11 2021 档案
摘要:在vue项目根目录下创建vue.config.js文件,如果不是在网站根目录下,设置publicPath。 module.exports = { publicPath: './', assetsDir: 'static', outputDir: 'dist' }
阅读全文
摘要:npm install vue-router --save npm install vue-resource --save npm install vuex --save 一、代码 import Vue from 'vue' import App from './App.vue' import Vu
阅读全文
摘要:/** * 判断是否是手机 * @return bool */ function is_mobile() { $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $is_pc = (strpos($agent, 'windows nt')) ? tru
阅读全文