vue extend 其他表現形式 元件形式

2021-10-19 02:13:09 字數 1555 閱讀 7572

元件大全:

這裡是針對於vue1.0,如果要學2.0,建議大家去看官方文件

vue2.0

vue-router2.0

"example"

>

<

/my-component>

<

/div>

"../node_modules/vue/dist/vue.js"

>

<

/script>

//向子元件傳遞資料

//省略extend方法,vue內部呼叫

vue.

component

('my-component',}

, template:''+

''+''

+''+'

',components:}'

}}})

;// 建立根例項1

newvue()

;<

/script>

"example"

>

<

/my-component>

<

/div>

"../node_modules/vue/dist/vue.js"

>

<

/script>

//向子元件傳遞資料

//省略extend方法,vue內部呼叫

vue.

component

('my-component',}

,//模板裡不支援駝峰的屬性寫法,需要轉換為『-'連線的屬性寫法

template:

'}parent',

components:}'

}}})

;// 建立根例項1

newvue()

;<

/script>

"example"

>

<

/my-component>

<

/div>

"../node_modules/vue/dist/vue.js"

>

<

/script>

//向子元件傳遞資料

//省略extend方法,vue內部呼叫

vue.

component

('my-component',}

,//模板裡不支援駝峰的屬性寫法,需要轉換為『-'連線的屬性寫法

template:

'}parent',

components:}'

,ready

:function()

},'child2-component':}

',ready

:function()

}}})

;// 建立根例項1

newvue()

;<

/script>

這個例子主要是說明帶冒號和不帶冒號的區別,不帶冒號就是乙個字串死值,帶冒號會到父模版的data中去尋找值的具體內容。

總結

表現形式CSS

css cascading stylesheets的縮寫 翻譯為 層疊樣式表 或者 級聯樣式表 簡稱樣式表 cascading stylesheets 的首字母縮寫,意思是層疊樣式表。有了css,html中大部分表現樣式的標籤就廢棄不用了,html只負責文件的結構和內容,表現形式完全交給css,ht...

多型的表現形式

目錄 1.多型的定義 2.多型的三種形式 3.多型的編譯和執行 4.多型的轉型 5.多型的好處 6.多型的弊端 多型 封裝和繼承是物件導向的三大特性。多型需滿足三個條件 1 有繼承 2 有重寫 3 有父類引用指向子類物件。最終多型體現為父類引用可以指向子類物件 父類型別 變數名 new 子類型別 1...

程序的表現形式

1.程序生命週期 執行 該程序此刻正在執行。2.程序表示 include linux sched.h中有結構體struct task struct 表示了程序的所有資訊。struct task struct 程序限制 rlimit cpu 按毫秒計算的最大cpu時間 rlimit fsize 允許的...