适用范围:任意地方均可使用,需要引入vue与element
<link rel="stylesheet" type="text/css" href="/themes/template/static/css/element.min.css">
<link rel="stylesheet" type="text/css" href="/plugins/customer/static/css/customer.css">
<script type="text/javascript" src="/themes/template/static/js/vue.min.js"></script>
<script type="text/javascript" src="/themes/template/static/js/element.min.js"></script>
<script type="text/javascript" src="/plugins/customer/static/js/customer.js"></script>
<div id="app">
<el-customer></el-customer>
</div>
<script>
new Vue({
el: '#app',
data() {
return {}
}
})
</script>