目录
效果
代码实现
页面部分
引用部分
数据部分
函数部分
官方文档:
代码下载
GitGee:咕之 / vue2 · GitCode
效果
点击按钮
代码实现
页面部分
<template>
<el-button type="primary" @click="open">点击打开 Message Box</el-button>
</template>
引用部分
import { MessageBox } from 'element-ui';
import Vue from 'vue';
数据部分
data(){
return {
//选项数组
optionList:[
{
value:'01',label:'苹果'
},
{
value:'02',label:'西瓜'
}
],