当前位置: 首页 > news >正文

网站制作视频教学wordpress系统api

网站制作视频教学,wordpress系统api,如何解析后用二级域名做网站,学校网站首页代码html目录 目录结构和使用1#xff0c;npm 安装1.1#xff0c;完整引入1.2#xff0c;按需引入 2#xff0c;CDN3#xff0c;国际化 接上文#xff1a;element-ui 打包流程源码解析#xff08;上#xff09; 文章中提到的【上文】都指它 ↑ 目录结构和使用 我们从使用方式来… 目录 目录结构和使用1npm 安装1.1完整引入1.2按需引入 2CDN3国际化 接上文element-ui 打包流程源码解析上 文章中提到的【上文】都指它 ↑ 目录结构和使用 我们从使用方式来分析为什么要打包成上面的目录结构。 1npm 安装 每个模块都有 package.json 文件其中的 main 字段表示模块的入口文件。 {name: element-ui,version: 2.15.9,main: lib/element-ui.common.js }1.1完整引入 import Vue from vue; import ElementUI from element-ui; import element-ui/lib/theme-chalk/index.css; import App from ./App.vue; Vue.use(ElementUI); new Vue({el: #app,render: h h(App) });样式引入不必多说。 完整引入对应的是上文中第2.3节 build/webpack.common.js 打包后的内容其中 output 输出设置 module.exports {entry: {app: [./src/index.js]},// ...output: {path: path.resolve(process.cwd(), ./lib),filename: element-ui.common.js,libraryExport: default,library: ELEMENT,libraryTarget: commonjs2}, }注意到webpack 设置的打包名称是 ELEMENT但引入时却是 ElementUI 因为 element-ui 使用的 webpack4 版本所以设置 libraryTarget: commonjs2 时 会自动忽略output.library。 所以import导入的名称随意只是一个对象而已。 import ElementUI from element-ui; Vue.use(ElementUI);Vue.use(ElementUI)会调用 install 方法也就是入口文件 ./src/index.js中的 install 方法来遍历每个组件使用 Vue.component全局注册每个组件实现全量引入。 /* Automatically generated by ./build/bin/build-entry.js */import Pagination from ../packages/pagination/index.js; // ... 其他组件略 import locale from element-ui/src/locale; import CollapseTransition from element-ui/src/transitions/collapse-transition;const components [Pagination,Result,CollapseTransition ];const install function(Vue, opts {}) {locale.use(opts.locale);locale.i18n(opts.i18n);components.forEach(component {Vue.component(component.name, component);});Vue.use(InfiniteScroll);Vue.use(Loading.directive);Vue.prototype.$ELEMENT {size: opts.size || ,zIndex: opts.zIndex || 2000};Vue.prototype.$loading Loading.service;Vue.prototype.$msgbox MessageBox;Vue.prototype.$alert MessageBox.alert;Vue.prototype.$confirm MessageBox.confirm;Vue.prototype.$prompt MessageBox.prompt;Vue.prototype.$notify Notification;Vue.prototype.$message Message;};/* istanbul ignore if */ if (typeof window ! undefined window.Vue) {install(window.Vue); }export default {version: 2.15.9,locale: locale.use,i18n: locale.i18n,install,CollapseTransition,Loading,Pagination,// ... 其他组件略 };1.2按需引入 官网参考 import Vue from vue; import { Button, Select } from element-ui; import App from ./App.vue; Vue.component(Button.name, Button); Vue.component(Select.name, Select); /* 或写为* Vue.use(Button)* Vue.use(Select)*/ new Vue({el: #app,render: h h(App) });前面说了package.json 中的 main 字段是模块的入口 {name: element-ui,version: 2.15.9,main: lib/element-ui.common.js }所以想实现这样引入注意样式也要一起引入。 import { Button, Select } from element-ui;1首先得把模块分别打包对应上文中第2.4节 build/webpack.component.js 打包后的目录 -- lib-- pagination.js-- dialog.js-- ...2编译引入语法变成下面这样 import { Button, Select } from element-ui; // to var button require(element-ui/lib/button) require(element-ui/lib/button/style.css) // 样式目录可以配置这里只是举例这就需要借助 babel-plugin-component 来实现 npm install babel-plugin-component -D指定 libraryName和 styleLibraryName最终效果 require({libraryName}/lib/button) require({libraryName}/lib/{styleLibraryName}/button/style.css){presets: [[es2015, { modules: false }]],plugins: [[component,{libraryName: element-ui,styleLibraryName: theme-chalk}]] }另外每个组件中都自定义了 install 方法所以也可直接使用 Vue.use() 注册组件。 import ElButton from ./src/button;/* istanbul ignore next */ ElButton.install function(Vue) {Vue.component(ElButton.name, ElButton); };export default ElButton;2CDN !-- 引入样式 -- link relstylesheet hrefhttps://unpkg.com/element-ui/lib/theme-chalk/index.css !-- 引入组件库 -- script srchttps://unpkg.com/element-ui/lib/index.js/scriptunpkg是一个内容来自 npm 的全球CDN可以指定版本号。比如 unpkg.com/element-ui2.15.9 引入 css不必多说。 引入的 js对应上文第2.2节 build/webpack.conf.js 的输出 module.exports {entry: {app: [./src/index.js]},// ...output: {path: path.resolve(process.cwd(), ./lib),publicPath: /dist/,filename: index.js,libraryExport: default,library: ELEMENT,libraryTarget: umd,globalObject: typeof self ! \undefined\ ? self : this}, }打包为 umd 模块自执行函数 (function webpackUniversalModuleDefinition(root, factory) {if(typeof exports object typeof module object)module.exports factory();else if(typeof define function define.amd)define([], factory);else if(typeof exports object)exports[ELEMENT] factory();elseroot[ELEMENT] factory(); })(typeof self ! undefined ? self : this, () {return _entry_return_; // 此模块返回值是入口 chunk 返回的值 });在 HTML 引入后可直接在 js 中使用 (window || self || this).ELEMENT 访问。组件也可直接在页面内使用。 参考 element-ui 官网例子 3国际化 官网参考 npm 的使用方式不多赘述就是引入了上文第2.5节 npm run build:utils 生成的 locale 目录下的多语言文件。 主要介绍下CDN的国际化 在上文第2.6节 npm run build:umd 中对生成的 umd 模块做了一些替换以打包后的 zh-CN.js 为例。 (function (global, factory) {if (typeof define function define.amd) {// 原define(zh-CN, [module, exports], factory);define(element/locale/zh-CN, [module, exports], factory);} else if (typeof exports ! undefined) {factory(module, exports);} else {var mod {exports: {}};factory(mod, mod.exports);// 原global.zhCN mod.exports;global.ELEMENT.lang global.ELEMENT.lang || {}; global.ELEMENT.lang.zhCN mod.exports;} })(this, function (module, exports) {// 被打包文件的内容 }我们对比下CDN引入多语言的方式就明白了 script src//unpkg.com/vue/script script src//unpkg.com/element-ui/script script src//unpkg.com/element-ui/lib/umd/locale/en.js/script scriptELEMENT.locale(ELEMENT.lang.en) /script因为通过 CDN 引入后 umd 模块的 element-ui一个自执行函数后 umd 会同时以 AMD、CommonJS 和全局属性形式暴露。这样可以在 commonjs 模块和 amd 和浏览器环境同时使用该库。 会给浏览器添加一个全局变量 ELEMENT可以通过this.ELEMENT访问。 所以上面替换的作用是当引入对应的多语言文件时可以通过 this.ELEMENT.lang访问到对应的多语言文件。 element-ui 打包整体流程介绍完毕希望对你有帮助。 以上。
http://www.hkea.cn/news/14480193/

相关文章:

  • 免费英文网站模板elgg与wordpress对比
  • 网站建设的3个阶段网站推广采用的方法
  • wordpress小说下载站个人网站备案要多久
  • 网站做游戏活动如何创建网站设计
  • 徐州金网网站建设十大全屋整装公司排名
  • 一家做运动鞋的网站好上海网站建设网站游戏
  • 深圳市建设局网站首页曼联对利物浦新闻
  • 南阳网站排名优化企业宣传片视频模板
  • 网站视频主持人怎么做各种广告牌图片
  • 做网站诈钱wordpress termmeta
  • 黄埔做网站要多少钱郑州最新发展
  • 河南网站建设哪家公司好WordPress多站点同步设置
  • 站长做旅游网站即墨区建设局网站
  • 企业网站怎么做排名圣辉友联做网站公司
  • 今天刚刚发布的新闻衡水网站优化
  • 做游戏ppt下载网站有哪些重庆在线开放课程平台
  • 汽车宣传网站模板找个网页公司做网站
  • 手机自适应网站深圳网站建设最专业
  • 本地网站搭建工具c#网站开发+pdf
  • 国外申请域名的网站公司开发设计推荐
  • 高埗镇做网站常州企业黄页
  • 武侯区建设局网站定制车需要多少钱
  • 自己做网站需要买哪些网易163企业邮箱官网
  • 济南专业的设计网站卓创源码网
  • 做网站常用代码哪些网站做外贸效果好
  • 不能进入建设银行网站中国外贸人才网官网
  • 网站建设公司盈利模式做游戏模型挣钱的网站
  • 网站备案 视频公司网站建设手续
  • 网页设计网站建设的基本流程二级网站建设要求
  • 建网广东seo网络培训