App下載

詞條

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

671.Laravel 8 SPA 身份驗證

...同一倉庫中,也可能是一個完全獨立的倉庫,例如使用 Vue CLI 創(chuàng)建的單頁應用程序。對于此功能,Sanctum 不使用任何類型的令牌。相反,Sanctum 使用 Laravel 內(nèi)置的基于 cookie 的會話身份驗證服務。這提供了 CSRF 保護,會話身份驗證...

http://o2fo.com/laravel_8/laravel_8-eurz3ijs.html

672.Laravel 8 SPA 認證

...個存儲層中,也可以完全分離于存儲層之外,比如通過 Vue CLI 構建的 SPA。對于這個特性,Sanctum 不使用其他任何類型的令牌。相反,Sanctum 使用的是 Laravel 內(nèi)置的基于 cookie 的 session 認證服務。這帶來了諸多好處,比如 CSRF 保護...

http://o2fo.com/laravel_8/laravel_8-kynz3ik0.html

673.Vant3 useCustomFieldValue

...個回調(diào)函數(shù),這個函數(shù)返回值為表單項的值。// MyComponent.vue import { useCustomFieldValue } from '@vant/use'; export default { setup() { // 此處傳入的值會替代 Field 組件內(nèi)部的 value useCustomFieldValue(() => 'Some value'); }, }; 表單 接著,在 Form 組件中...

http://o2fo.com/vant3/usecustomfieldvalue.html

674.Vant3 useRect

...。 代碼演示 基本用法<div ref="root" /> import { ref } from 'vue'; import { useRect } from '@vant/use'; export default { setup() { const root = ref(); const rect = useRect(); console.log(rect); // -> 元素的大小及其相對于視口的位置 return { root }; }, }; API 類型定...

http://o2fo.com/vant3/userect.html

675.Vant3 useEventListener

...activated 時解綁事件。 代碼演示 基本用法import { ref } from 'vue'; import { useEventListener } from '@vant/use'; export default { setup() { // 在 window 上綁定 resize 事件 // 未指定監(jiān)聽對象時,默認會監(jiān)聽 window 的事件 useEventListener('resize', () => { console...

http://o2fo.com/vant3/useeventlistener.html

676.Vant3 usePageVisibility

...頁面的可見狀態(tài)。 代碼演示 基本用法import { watch } from 'vue'; import { usePageVisibility } from '@vant/use'; export default { setup() { const pageVisibility = usePageVisibility(); watch(pageVisibility, (value) => { console.log('visibility: ', value); }); }, }; API 類型定義typ...

http://o2fo.com/vant3/usepagevisibility.html

677.Vant3 useScrollParent

...碼演示 基本用法<div ref="root" /> import { ref, watch } from 'vue'; import { useScrollParent, useEventListener } from '@vant/use'; export default { setup() { const root = ref(); const scrollParent = useScrollParent(root); useEventListener( 'scroll', () => { console.log('scroll'); }, ...

http://o2fo.com/vant3/usescrollparent.html

678.Vant3 useWindowSize

...變化時自動更新。 代碼演示 基本用法import { watch } from 'vue'; import { useWindowSize } from '@vant/use'; export default { setup() { const { width, height } = useWindowSize(); console.log(width.value); // -> 窗口寬度 console.log(height.value); // -> 窗口高度 watch([widt...

http://o2fo.com/vant3/usewindowsize.html

679.Vant3 useRelation

...法 在父組件中使用 useChildren 關聯(lián)子組件:import { ref } from 'vue'; import { useChildren } from '@vant/use'; const RELATION_KEY = Symbol('my-relation'); export default { setup() { const { linkChildren } = useChildren(RELATION_KEY); const count = ref(0); const add = () => { count.valu...

http://o2fo.com/vant3/userelation.html

680.Taro 路由功能

...的參數(shù),例如上述跳轉(zhuǎn),在目標頁的 componentWillMount(或 Vue 的 created) 生命周期里獲取入?yún)?import { getCurrentInstance } from '@tarojs/taro'class C extends Taro.Component { onReady () { console.log(getCurrentInstance().router.params) // 輸出 { id: 2, type: 'test' ...

http://o2fo.com/taro_v3/taro-routing-function.html

抱歉,暫時沒有相關的微課

w3cschool 建議您:

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

抱歉,暫時沒有相關的視頻課程

w3cschool 建議您:

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

抱歉,暫時沒有相關的教程

w3cschool 建議您:

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

671.Laravel 8 SPA 身份驗證

...同一倉庫中,也可能是一個完全獨立的倉庫,例如使用 Vue CLI 創(chuàng)建的單頁應用程序。對于此功能,Sanctum 不使用任何類型的令牌。相反,Sanctum 使用 Laravel 內(nèi)置的基于 cookie 的會話身份驗證服務。這提供了 CSRF 保護,會話身份驗證...

http://o2fo.com/laravel_8/laravel_8-eurz3ijs.html

672.Laravel 8 SPA 認證

...個存儲層中,也可以完全分離于存儲層之外,比如通過 Vue CLI 構建的 SPA。對于這個特性,Sanctum 不使用其他任何類型的令牌。相反,Sanctum 使用的是 Laravel 內(nèi)置的基于 cookie 的 session 認證服務。這帶來了諸多好處,比如 CSRF 保護...

http://o2fo.com/laravel_8/laravel_8-kynz3ik0.html

673.Vant3 useCustomFieldValue

...個回調(diào)函數(shù),這個函數(shù)返回值為表單項的值。// MyComponent.vue import { useCustomFieldValue } from '@vant/use'; export default { setup() { // 此處傳入的值會替代 Field 組件內(nèi)部的 value useCustomFieldValue(() => 'Some value'); }, }; 表單 接著,在 Form 組件中...

http://o2fo.com/vant3/usecustomfieldvalue.html

674.Vant3 useRect

...。 代碼演示 基本用法<div ref="root" /> import { ref } from 'vue'; import { useRect } from '@vant/use'; export default { setup() { const root = ref(); const rect = useRect(); console.log(rect); // -> 元素的大小及其相對于視口的位置 return { root }; }, }; API 類型定...

http://o2fo.com/vant3/userect.html

675.Vant3 useEventListener

...activated 時解綁事件。 代碼演示 基本用法import { ref } from 'vue'; import { useEventListener } from '@vant/use'; export default { setup() { // 在 window 上綁定 resize 事件 // 未指定監(jiān)聽對象時,默認會監(jiān)聽 window 的事件 useEventListener('resize', () => { console...

http://o2fo.com/vant3/useeventlistener.html

676.Vant3 usePageVisibility

...頁面的可見狀態(tài)。 代碼演示 基本用法import { watch } from 'vue'; import { usePageVisibility } from '@vant/use'; export default { setup() { const pageVisibility = usePageVisibility(); watch(pageVisibility, (value) => { console.log('visibility: ', value); }); }, }; API 類型定義typ...

http://o2fo.com/vant3/usepagevisibility.html

677.Vant3 useScrollParent

...碼演示 基本用法<div ref="root" /> import { ref, watch } from 'vue'; import { useScrollParent, useEventListener } from '@vant/use'; export default { setup() { const root = ref(); const scrollParent = useScrollParent(root); useEventListener( 'scroll', () => { console.log('scroll'); }, ...

http://o2fo.com/vant3/usescrollparent.html

678.Vant3 useWindowSize

...變化時自動更新。 代碼演示 基本用法import { watch } from 'vue'; import { useWindowSize } from '@vant/use'; export default { setup() { const { width, height } = useWindowSize(); console.log(width.value); // -> 窗口寬度 console.log(height.value); // -> 窗口高度 watch([widt...

http://o2fo.com/vant3/usewindowsize.html

679.Vant3 useRelation

...法 在父組件中使用 useChildren 關聯(lián)子組件:import { ref } from 'vue'; import { useChildren } from '@vant/use'; const RELATION_KEY = Symbol('my-relation'); export default { setup() { const { linkChildren } = useChildren(RELATION_KEY); const count = ref(0); const add = () => { count.valu...

http://o2fo.com/vant3/userelation.html

680.Taro 路由功能

...的參數(shù),例如上述跳轉(zhuǎn),在目標頁的 componentWillMount(或 Vue 的 created) 生命周期里獲取入?yún)?import { getCurrentInstance } from '@tarojs/taro'class C extends Taro.Component { onReady () { console.log(getCurrentInstance().router.params) // 輸出 { id: 2, type: 'test' ...

http://o2fo.com/taro_v3/taro-routing-function.html

抱歉,暫時沒有相關的文章

w3cschool 建議您:

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

熱門課程