App下載

詞條

大約有 500 項符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項。(搜索耗時:0.0036秒)

271.Vant 風(fēng)格指南

...,請遵守約定的單文件組件風(fēng)格指南,指南內(nèi)容節(jié)選自 Vue 官方風(fēng)格指南。組件數(shù)據(jù)組件的 data 必須是一個函數(shù)。// bad export default { data: { foo: 'bar' } } // good export default { data () { return { foo: 'bar' } } } 單文件組件文件名稱單文件組件...

http://www.o2fo.com/vantlesson/vantlesson-axz635uw.html

272.UI 本地化

...新的地區(qū)獲取語言代碼。例如:'fr'。搜索 npm 確認名為 vue-cli-locale-<language code> 的包是否已經(jīng)存在。如果存在,則請通過 PR 為它貢獻!如果沒找到,則創(chuàng)建一個新的名為 vue-cli-locale-<language code> 的地區(qū)的包。例如:vue-cli...

http://www.o2fo.com/vue3course/vue3course-7ta3364n.html

273.Vant4 介紹

...的移動端組件庫,于 2017 年開源。 目前 Vant 官方提供了 Vue 2 版本、Vue 3 版本和微信小程序版本,并由社區(qū)團隊維護 React 版本和支付寶小程序版本。 特性 [[EMOJI:%F0%9F%9A%80]] 性能極佳,組件平均體積小于 1KB(min+gzip) [[EMOJI:%F0%9F%...

http://www.o2fo.com/pcauz/pcauz-h6nz3qfx.html

274.ModuleFederationPlugin

...examplesmodule.exports = { plugins: [ new ModuleFederationPlugin({ // adds vue as shared module // version is inferred from package.json // it will always use the shared version, but print a warning when the shared vue is < 2.6.5 or >= 3 shared: { vue: { requiredVersion: '^2.6.5', singleton: t...

http://www.o2fo.com/webpack/modulefederationplugin.html

275.uni-app 使用Weex/nvue的注意事項

...原生渲染引擎,提供了原生渲染能力。在App端,如果使用vue頁面,則使用webview渲染;如果使用nvue頁面(native vue的縮寫),則使用原生渲染。一個App中可以同時使用兩種頁面,比如首頁使用nvue,二級頁使用vue頁面,hello uni-app示例...

http://www.o2fo.com/uni_app/uni_app-vwqn370o.html

276.ElementPlus 快速上手

使用組件 完整引入所有組件 主文件import { createApp } from 'vue' import ElementPlus from 'element-plus' import 'element-plus/dist/index.css' import App from './App.vue' const app = createApp(App) app.use(ElementPlus) app.mount('#app') 按需引入組件 ElementPlus的 JS 代碼默認...

http://www.o2fo.com/vue_elementplus/quickstart.html

277.Weex 使用weex-loader

weex-loader 是一個 webpack 的 loader,它能把*.vue文件轉(zhuǎn)化為簡單的javascript 模塊用于安卓以及 iOS 平臺。所有的特性和配置都是跟 vue-loader 一樣的。 需要注意的是,如果 Webpack 的 entry 配置項是一個 *.vue 文件的話,你仍需要傳遞一個...

http://www.o2fo.com/weex/weex-using-weex-loader.html

278.Vant 快速上手

腳手架在新項目中使用 Vant 時,推薦使用 Vue 官方提供的腳手架 Vue Cli 創(chuàng)建項目# 安裝 Vue Cli npm install -g @vue/cli # 創(chuàng)建一個項目 vue create hello-world # 創(chuàng)建完成后,可以通過命令打開圖形化界面,如下圖所示 vue ui 在圖形化界面中,...

http://www.o2fo.com/vantlesson/vantlesson-rig235ur.html

279.Nuxt.js .nuxtignore

...glob模式,指定應(yīng)該忽略哪些文件。例如:# ignore layout foo.vue layouts/foo.vue # ignore layout files whose name ends with -ignore.vue layouts/*-ignore.vue # ignore page bar.vue pages/bar.vue # ignore page inside ignore folder pages/ignore/*.vue # ignore store baz.js store/baz.js # igno...

http://www.o2fo.com/nuxtjs/nuxtjs-2pud36hj.html

280.Nuxt.js plugins 屬性配置

...包引入。plugins 屬性使得你可以輕易地為 Nuxt.js 配置使用 Vue.js 插件。例如 (nuxt.config.js):module.exports = { plugins: ['~plugins/vue-notifications'] }然后, 我們需要創(chuàng)建 plugins/vue-notifications.js 文件:import Vue from 'vue' import VueNotifications from 'vue-no...

http://www.o2fo.com/nuxtjs/nuxtjs-kdml36ht.html

抱歉,暫時沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

271.Vant 風(fēng)格指南

...,請遵守約定的單文件組件風(fēng)格指南,指南內(nèi)容節(jié)選自 Vue 官方風(fēng)格指南。組件數(shù)據(jù)組件的 data 必須是一個函數(shù)。// bad export default { data: { foo: 'bar' } } // good export default { data () { return { foo: 'bar' } } } 單文件組件文件名稱單文件組件...

http://www.o2fo.com/vantlesson/vantlesson-axz635uw.html

272.UI 本地化

...新的地區(qū)獲取語言代碼。例如:'fr'。搜索 npm 確認名為 vue-cli-locale-<language code> 的包是否已經(jīng)存在。如果存在,則請通過 PR 為它貢獻!如果沒找到,則創(chuàng)建一個新的名為 vue-cli-locale-<language code> 的地區(qū)的包。例如:vue-cli...

http://www.o2fo.com/vue3course/vue3course-7ta3364n.html

273.Vant4 介紹

...的移動端組件庫,于 2017 年開源。 目前 Vant 官方提供了 Vue 2 版本、Vue 3 版本和微信小程序版本,并由社區(qū)團隊維護 React 版本和支付寶小程序版本。 特性 [[EMOJI:%F0%9F%9A%80]] 性能極佳,組件平均體積小于 1KB(min+gzip) [[EMOJI:%F0%9F%...

http://www.o2fo.com/pcauz/pcauz-h6nz3qfx.html

274.ModuleFederationPlugin

...examplesmodule.exports = { plugins: [ new ModuleFederationPlugin({ // adds vue as shared module // version is inferred from package.json // it will always use the shared version, but print a warning when the shared vue is < 2.6.5 or >= 3 shared: { vue: { requiredVersion: '^2.6.5', singleton: t...

http://www.o2fo.com/webpack/modulefederationplugin.html

275.uni-app 使用Weex/nvue的注意事項

...原生渲染引擎,提供了原生渲染能力。在App端,如果使用vue頁面,則使用webview渲染;如果使用nvue頁面(native vue的縮寫),則使用原生渲染。一個App中可以同時使用兩種頁面,比如首頁使用nvue,二級頁使用vue頁面,hello uni-app示例...

http://www.o2fo.com/uni_app/uni_app-vwqn370o.html

276.ElementPlus 快速上手

使用組件 完整引入所有組件 主文件import { createApp } from 'vue' import ElementPlus from 'element-plus' import 'element-plus/dist/index.css' import App from './App.vue' const app = createApp(App) app.use(ElementPlus) app.mount('#app') 按需引入組件 ElementPlus的 JS 代碼默認...

http://www.o2fo.com/vue_elementplus/quickstart.html

277.Weex 使用weex-loader

weex-loader 是一個 webpack 的 loader,它能把*.vue文件轉(zhuǎn)化為簡單的javascript 模塊用于安卓以及 iOS 平臺。所有的特性和配置都是跟 vue-loader 一樣的。 需要注意的是,如果 Webpack 的 entry 配置項是一個 *.vue 文件的話,你仍需要傳遞一個...

http://www.o2fo.com/weex/weex-using-weex-loader.html

278.Vant 快速上手

腳手架在新項目中使用 Vant 時,推薦使用 Vue 官方提供的腳手架 Vue Cli 創(chuàng)建項目# 安裝 Vue Cli npm install -g @vue/cli # 創(chuàng)建一個項目 vue create hello-world # 創(chuàng)建完成后,可以通過命令打開圖形化界面,如下圖所示 vue ui 在圖形化界面中,...

http://www.o2fo.com/vantlesson/vantlesson-rig235ur.html

279.Nuxt.js .nuxtignore

...glob模式,指定應(yīng)該忽略哪些文件。例如:# ignore layout foo.vue layouts/foo.vue # ignore layout files whose name ends with -ignore.vue layouts/*-ignore.vue # ignore page bar.vue pages/bar.vue # ignore page inside ignore folder pages/ignore/*.vue # ignore store baz.js store/baz.js # igno...

http://www.o2fo.com/nuxtjs/nuxtjs-2pud36hj.html

280.Nuxt.js plugins 屬性配置

...包引入。plugins 屬性使得你可以輕易地為 Nuxt.js 配置使用 Vue.js 插件。例如 (nuxt.config.js):module.exports = { plugins: ['~plugins/vue-notifications'] }然后, 我們需要創(chuàng)建 plugins/vue-notifications.js 文件:import Vue from 'vue' import VueNotifications from 'vue-no...

http://www.o2fo.com/nuxtjs/nuxtjs-kdml36ht.html

抱歉,暫時沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程