JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/[email protected]/lib/index.js"></script>
<div id="app">
<template>
<el-button type="text" @click="open3">点击打开 Message Box</el-button>
</template>
</div>
SCSS
@import url("//unpkg.com/[email protected]/lib/theme-chalk/index.css");
Babel + JSX
var Main = {
methods: {
open3() {
this.$prompt('aa', 'bb', {
center: false,
type: 'error'
})
}
}
}
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')