要使用element插件,您需要完成以下步骤:
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
import Vue from 'vue'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI)
<template>
<el-button>{{ buttonText }}</el-button>
</template>
<script>
export default {
data() {
return {
buttonText: 'Click me'
}
}
}
</script>
这只是element插件使用的基本步骤。您可以在element官方文档(https://element.eleme.io/#/en-US)中找到更多的组件和用法。