在vue
angular
react
三大前端框架的大前端時代。許多人選擇了vue
,在 github 上的star
,vue
已經超過react
的數量了。雖然star
並不能表明vue
更強,不過在發展速度上看來,vue
確實很快。html
在模塊化的前端時代,萬物皆組件,vue
學習組件是必不可少的。前端
html
、
jq
以後,在初次接觸
vue
的組件時候,倒是滿臉矇蔽。
今天我們以最簡單的方式,帶vue
小白童鞋們,步入組件的世界~vue
我們今天講三種組件使用方式react
我們以一個
button
子組件爲例git
項目src結構:github
組件通常都放在components文件夾下:1.寫好子組件:web
<template>
<button class="btn" :style="{color:color}">
<slot/> <!-- 插槽 -->
</button>
</template>
<script>
export default {
// 傳入子組件的參數寫到props
props: {
color: {
type: String, // 顏色參數類型
default: "#000" // 默認黑色
}
}
}
</script>
<style scoped>
.btn {
width: 110px;
height: 60px;
border-radius: 10px;
border: none;
font-size: 15px;
}
</style>
複製代碼
2.3.4.父組件:前端框架
<template>
<div id="app">
<!-- 4. 在頁面上使用 -->
<Button color="red">我是插槽的值</Button>
</div>
</template>
<script>
// 2. 在頁面種引用組件
import Button from '@/components/Button.vue'
export default {
name: "app",
// 3. 在components中聲明組件
components: {
Button
}
};
</script>
複製代碼
效果:app
main.js
中引用Vue.use
方法1.子組件仍是那樣~~:框架
2. 子組件添加install方法
Button.js :
import ButtonComponent from './Button.vue'
// 添加install方法 (插件方法)
const Button = {
install: function (Vue) {
Vue.component("Button", ButtonComponent);
}
}
// 導出Button
export default Button
複製代碼
固然 你能夠處理多個全局組件:
import ButtonComponent1 from './Button1.vue'
import ButtonComponent2 from './Button2.vue'
import ButtonComponent3 from './Button3.vue'
const buttonList = [
ButtonComponent1,
ButtonComponent2,
ButtonComponent3
];
// 添加install方法 (插件方法)
const Button = {
install: function (Vue) {
buttonList.forEach(button=>{
// 這裏 使用每一個組件的 name 屬性做爲組件名
Vue.component(button.name, button);
})
}
}
// 導出Button
export default Button
複製代碼
3.4. main.js
import Vue from 'vue'
import App from './App.vue'
// 3
import Button from '@/components/Button.js'
// 4
Vue.use(Button);
new Vue({
render: h => h(App),
}).$mount('#app')
複製代碼
5. 在頁面上使用
app.vue:
<template>
<div id="app">
<!-- 5. 在頁面上使用 -->
<Button color="blue">我是全局按鈕</Button>
</div>
</template>
複製代碼
效果以下:
vue.extend
構建組件Vue.prototype
1.寫好子組件:
<template>
<p class="Message">{{value}}</p>
</template>
<script>
export default {
data() {
return {
value: "我是一個彈框"
};
}
};
</script>
<style>
.Message {
position: fixed;
bottom: 30px;
width: 200px;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
border-radius: 10px;
left: 50%;
transform: translateX(-50%);
line-height: 30px;
text-align: center;
font-size: 15px;
animation: messageFade 3s 1;
}
/* 加個簡單動畫 */
@keyframes messageFade {
0% {
opacity: 0;
-webkit-transform: translate3d(-50%, 80%, 0);
transform: translate3d(-50%, 80%, 0);
}
16% {
opacity: 1;
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0);
}
84% {
opacity: 1;
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-50%, 80%, 0);
transform: translate3d(-50%, 80%, 0);
}
}
</style>
複製代碼
2. vue.extend
構建組件
Message.js :
import Vue from 'vue';
import Message from './Message.vue';
// 構造組件
const MessageConstructor = Vue.extend(Message);
// 設置刪除組件
const removeDom = (target) => {
target.parentNode.removeChild(target);
};
// 構造組件添加關閉方法
MessageConstructor.prototype.close = function() {
this.visible = false;
removeDom(this.$el);
};
const MessageDiv = (options) => {
// 實例化組件
const instance = new MessageConstructor({
el: document.createElement('div'),
// 組件參數,運用到組件內的data
data: options,
});
// 在body添加組件
document.body.appendChild(instance.$el);
Vue.nextTick(() => {
instance.timer = setTimeout(() => {
// 定時關閉組件
instance.close();
}, 3000);
});
return instance;
};
export default MessageDiv;
複製代碼
3. 掛載 Vue.prototype
main.js :
import Message from '@/components/Message.js'
Vue.prototype.$message = Message;
複製代碼
4. 使用:
<template>
<div id="app">
<Button color="blue" @click.native="msg">我是全局按鈕</Button>
</div>
</template>
<script>
import Button from "@/components/Button.vue";
export default {
name: "app",
components: {
Button
},
methods: {
msg() {
// 4. 使用構造組件
this.$message({value:'我是構造組件'});
}
}
};
</script>
複製代碼
效果:
以上就是三種組件的基本使用啦~~