欧美丰满老熟妇XXXXX性,色综合欧美在线视频区,麻花传媒免费网站在线观看,黑狐影院在线观看免费版
VUE4
在Ant Design of Vue中,下列有關(guān)按鈕組件描述錯誤的是
disabled屬性表示按鈕失效狀態(tài)
ghost屬性表示是否使按鈕背景透明
loading屬性設(shè)置按鈕載入狀態(tài)
type屬性可以設(shè)置為submit
在Ant Design of Vue中,關(guān)于按鈕組件以下說法錯誤的是
主按鈕在同一個操作區(qū)域最多出現(xiàn)一次
可以將多個按鈕組件放入button-group容器中
按鈕容器組件<a-button-group>…</a-button-group>
按鈕容器組件<a-button>…</a-button>
在Ant Design of Vue中,有關(guān)表格組件使用情況說法錯誤的是
有大量結(jié)構(gòu)化的數(shù)據(jù)需要展現(xiàn)時
當(dāng)需要對數(shù)據(jù)進行排序時
當(dāng)需要對數(shù)據(jù)進行搜索、分頁時
純粹就為了界面好看
在Ant Design of Vue中,有關(guān)表格組件的屬性描述錯誤的是
bordered屬性是否展示外邊框和列邊框
columns屬性是表格列的配置描述
dataSource屬性是數(shù)據(jù)數(shù)組
rows是表格行的配置描述
在Ant Design of Vue中,關(guān)于方法$message.success(content,[duration],onClose)參數(shù)說法錯誤的是
content參數(shù)是要提示的內(nèi)容
duration是提示自動關(guān)閉的延遲時間
duration設(shè)置為0時,提示一閃而過
onClose關(guān)閉時觸發(fā)的回調(diào)函數(shù)
在Ant Design of Vue中,下列哪個選項是成功消息提示
$message.success
$message.error
$message.info
$message.warn
在Ant Design of Vue中,下列哪個選項是錯誤消息提示
$message.info
$message.warn
$message.error
$message.loading
在Ant Design of Vue中,表示信息消息提示的選項是
$message.info
$message.warn
$message.success
$message.error
在Ant Design of Vue中,下列哪個選項是警告消息提示
$message.loading
$message.warn
$message.info
$message.error
在Ant Design of Vue中,下列哪個選項是加載消息提示
$message.loading
$message.success
$message.warn
$message.warm
在Vue.js中,Ant Design設(shè)計體系組成【選四項】
設(shè)計價值觀
視覺設(shè)計
可視化設(shè)計
動畫效果
在Ant Design of Vue中,視覺設(shè)計包含以下哪幾部分【選四項】
色彩
布局
字體
圖標(biāo)
在Ant Design of Vue中,布局組件包含哪些設(shè)計原則【選三項】
尺寸
交互
視覺
動畫效果
在Ant Design of Vue中,以下哪些是布局組件【選四項】
Header組件
Sider組件
Content組件
Footer組件
在Ant Design of Vue中,有關(guān)Layout組件說法正確的是【選三項】
布局容器
可嵌套Header組件、Sider組件、Content組件、Footer組件、或Layout組件本身
可以放在任何父容器中
以上說法錯誤
在Ant Design of Vue中,面包屑組件(Breadcrumb)用來顯示當(dāng)前頁面在系統(tǒng)層級結(jié)構(gòu)中的位置,并能向上返回。在以下哪種情況下使用面包屑組件【選三項】
當(dāng)系統(tǒng)擁有超過兩級以上的層級結(jié)構(gòu)時
當(dāng)需要告知用戶『你在哪里』時
當(dāng)需要向上導(dǎo)航的功能時
以上說法錯誤
在Ant Design of Vue中,按鈕組件類型有哪些【選四項】
主按鈕
次按鈕
虛線按鈕
危險按鈕
在Ant Design of Vue中,下列有關(guān)柵格化組件說法錯誤的是
基于行和列來定義信息區(qū)塊的外部框架
柵格化系統(tǒng)不支持flex布局
允許子元素在父節(jié)點內(nèi)的水平對齊方式有居左,居中,居右、等寬排列和分散排列
子元素與子元素之間,支持頂部對齊、垂直居中對齊及底部對齊的方式
在Ant Design of Vue中,下列有關(guān)柵格組件的列屬性描述不正確的是
offset設(shè)置柵格左側(cè)的間隔格數(shù),間隔內(nèi)不可以有柵格
order柵格順序,flex布局模式下無效
pull設(shè)置柵格向左移動格數(shù)
push柵格向右移動格數(shù)
在Ant Design of Vue中,以下多柵格組件使用說法錯誤的是
柵格組件從堆疊排列到水平排列
使用單一的一組行和列柵格組件,就可以創(chuàng)建一個基本的柵格系統(tǒng),所有列必須放在行內(nèi)
柵格常常需要和間隔進行配合,間隔可以使用行的gutter屬性
使用列的offset屬性可以設(shè)置外邊距
在Ant Design of Vue中,下列代碼設(shè)置1行2格正確的是
<a-row><a-col :span="12">col-12</a-col><a-col :span="12">col-12</a-col></a-row>
<a-row><a-row :span="12">col-12</a-row><a-row :span="12">col-12</a-row></a-row>
<a-col><a-col :span="12">col-12</a-col><a-col :span="12">col-12</a-col></a-col>
<a-col><a-row :span="12">col-12</a-row><a-row :span="12">col-12</a-row></a-col>
在Ant Design of Vue中,關(guān)于列間隔屬性和列偏移屬性說法正確的是
間隔屬性是gutter、列偏移屬性是offset
間隔屬性是gutter、列偏移屬性是gutter
間隔屬性是offset、列偏移屬性是offset
間隔屬性是offset、列偏移屬性是gutter
在Ant Design of Vue中,關(guān)于柵格化列間隔使用正確的是
<a-row :span="6" ><a-col :gutter="16">col-6</a-col><a-col :gutter="16">col-6</a-col><a-col :gutter="16">col-6</a-col><a-co :gutter="16">col-6</a-col></a-row>
<a-row :gutter="16"><a-col :span="6">col-6</a-col><a-col :span="6">col-6</a-col><a-col :span="6">col-6</a-col><a-col :span="6">col-6</a-col></a-row>
<a-row ><a-col :span="6" :gutter="16">col-6</a-col><a-col :span="6" :gutter="16">col-6</a-col><a-col :span="6" :gutter="16">col-6</a-col><a-col :span="6" :gutter="16">col-6</a-col></a-row>
以上都不對
在Ant Design of Vue中,關(guān)于柵格化列偏移使用正確的是
<a-row :offset="8" ><a-col :span="8">col-8</a-col><a-col :span="8" >col-8</a-col></a-row>
<a-row ><a-col :span="8">col-8</a-col><a-col :span="8" :offset="8">col-8</a-col></a-row>
<a-row :span="8" :offset="8"><a-col >col-8</a-col><a-col >col-8</a-col></a-row>
以上都不對
在Ant Design of Vue中,柵格化一行一格并且居中的代碼是
<a-row><a-col :span="12" :gutter="6>col-12 col-offset-6</a-col></a-row>
<a-row><a-col :gutter="12" :offset="6>col-12 col-offset-6</a-col></a-row>
<a-row><a-col :span="12" :offset="6>col-12 col-offset-6</a-col></a-row>
以上都不對
在Vue.js中,以下哪項不是ant design of vue中與輸入相關(guān)的組件
輸入框
選擇器
單選框
以上都不對
在Ant Design of Vue中,輸入框組件是通過鼠標(biāo)或鍵盤輸入內(nèi)容,有關(guān)輸入框組件使用場景說法錯誤的是
需要用戶輸入表單域內(nèi)容時
需要提供組合型輸入框時
需要帶搜索的輸入框時
以上都不對
在Ant Design of Vue中,有關(guān)輸入框組件常用屬性說法正確的是
addonAfter屬性設(shè)置帶前置標(biāo)簽的輸入框
addonBefore屬性設(shè)置帶后置標(biāo)簽的輸入框
defaultValue屬性設(shè)置輸入框默認內(nèi)容
default屬性設(shè)置輸入框默認內(nèi)容
在Ant Design of Vue中,以下哪一項不是輸入框組件的常用屬性
id
prefix
src
size
在Ant Design of Vue中,設(shè)置帶有前綴的輸入框代碼是
<a-input placeholder="請輸入..." ><a-icon slot="prefix" type="user" /></a-input>
<a-input placeholder="請輸入..." slot="prefix"><a-icon type="user" /></a-input>
<a-input placeholder="請輸入..." slot="prefix" type="user" ><a-icon /></a-input>
以上都不對
在Ant Design of Vue中,設(shè)置帶有圖標(biāo)的密碼框正確代碼是
<a-input placeholder="請輸入密碼" type="password" slot="prefix"><a-icon type="unlock" /></a-input>
<a-input placeholder="請輸入密碼" type="password"><a-icon slot="prefix" type="unlock" /></a-input>
<a-input placeholder="請輸入密碼" type="password" slot="prefix" type="unlock" ><a-icon /></a-input>
以上都不對
在Ant Design of Vue中,設(shè)置價格前后綴的代碼正確的是
<a-input placeholder="總金額" defaultValue="0.00"><span slot="addonBefore">¥</span><span slot="addonAfter">元</span></a-input>
<a-input placeholder="總金額" defaultValue="0.00"><span slot="addonAfter">¥</span><span slot="addonBefore">元</span></a-input>
<a-input placeholder="總金額" defaultValue="0.00"><span slot="addonBefore" slot="addonAfter">¥ 元</span></a-input>
以上都不對
在Ant Design of Vue中,設(shè)置文本域組件代碼正確的是
<a-input placeholder="請輸入文字" type="area"></a-input>
<a-input placeholder="請輸入文字" type="text"></a-input>
<a-input placeholder="請輸入文字" type="textarea"></a-input>
以上都不對
在Ant Design of Vue中,選擇器組件實現(xiàn)下拉框選擇功能,有關(guān)選擇器組件使用情況說法錯誤的是
彈出一個下拉菜單給用戶選擇操作,用于代替原生的選擇器
需要一個更優(yōu)秀的多選器時
當(dāng)選項少時,建議直接將選項平鋪
以上說法都不對
在Ant Design of Vue中,以下哪一項不是選擇器組件的常用屬性
allowClear
autoClearSearchValue
autoFocus
src
在Ant Design of Vue中,選擇器組件的常用屬性說法錯誤的是
autoFocus默認獲取焦點
placeholder設(shè)置默認文字
showArrow設(shè)置是否顯示下拉小箭頭
value不是選擇器組件的常用屬性
在Ant Design of Vue中,以下哪一項不是選擇器組件的常用事件
blur
change
deselect
href
在Ant Design of Vue中,選擇器組件的常用事件說法錯誤的是
select事件,被選中時觸發(fā)事件,參數(shù)為選中項的value值
search文本框值變化時觸發(fā)事件
focus獲得焦點時觸發(fā)事件
blur獲得焦點時觸發(fā)事件
在Ant Design of Vue中,選擇器組件寫法正確的是
<a-select><a-select-option v-for="num in nums" :key="num">{{num}}</a-select-option></a-select>
<a-select-option><a-select-option v-for="num in nums" :key="num">{{num}}</a-select-option></a-select-option>
<a-select><a-select v-for="num in nums" :key="num">{{num}}</a-select></a-select>
以上都不對
在Vue中,下列說法正確的是( )
vue是后端框架
vue是基于jQuery開發(fā)的框架
vue是前端框架
以上說法都不對
下列框架中不屬于JavaScript框架的是( )
Spring
Angular
React
Vue
以下前端框架中,由中國人開發(fā)的是( )
Vue
Angular
React
jQuery
MVC設(shè)計模式不包括以下( )部分
Model
Vue
View
Controller
在Vue中,MVVM設(shè)計模式不包含( )部分
Model
View
Mvc
ViewModel
在Vue中,下列關(guān)于Vue的優(yōu)勢的說法錯誤的是( )【選兩項】
雙向數(shù)據(jù)綁定
可復(fù)用的組件
增加代碼的耦合度
功能插件化
在Vue中,以下關(guān)于Vue的功能描述錯誤的是( )
Vue的組件不可復(fù)用
Vue具有虛擬DOM功能
Vue可以實現(xiàn)視圖和數(shù)據(jù)解耦
Vue可用于數(shù)據(jù)綁定
在Vue中,向HTML中插入文本值可用下列( )符號
《》
<>
{{}}
()
在Vue中,關(guān)于Vue安裝下列說法正確的是( )
Vue是Javascript框架所以不需要安裝
只要引入jQuery就可以使用Vue
Vue要用script標(biāo)簽引入
以上都不對
在Vue中,下列引入vue.js的方式正確的是( )
<script href=“js/vue.min.js"></script>
<link src=“js/vue.min.js"></ link >
< link src="https://cdn.bootcss.com/vue/2.6.10/vue.min.js"></ link>
<script src="https://cdn.bootcss.com/vue/2.6.10/vue.min.js"></script>
在Vue中,下列不屬于Vue開發(fā)所需工具的是( )
Chrome瀏覽器
VS Code編譯器
vue-devtools
微信開發(fā)者工具
關(guān)閉
更多問卷
復(fù)制此問卷
主站蜘蛛池模板:
时尚
|
湟源县
|
丘北县
|
哈尔滨市
|
长武县
|
迁安市
|
晋城
|
依安县
|
普洱
|
五原县
|
内江市
|
沙湾县
|
洪洞县
|
内丘县
|
泗水县
|
英德市
|
安仁县
|
平南县
|
平安县
|
五指山市
|
永顺县
|
扶沟县
|
沭阳县
|
金寨县
|
竹溪县
|
勃利县
|
黄陵县
|
永康市
|
稻城县
|
彰化县
|
洛阳市
|
蕉岭县
|
富顺县
|
鹤峰县
|
宁明县
|
峡江县
|
扬州市
|
黄陵县
|
泗洪县
|
乌拉特后旗
|
宣武区
|