php项目中使用element.ui和vue
生活随笔
收集整理的這篇文章主要介紹了
php项目中使用element.ui和vue
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.plugins中添加axios,element-ui
?
2.全局文件下引入
<script src="/static/plugins/vue@2.5.13/vue.js"></script><!-- 引入樣式 -->
<link rel="stylesheet" href="/static/plugins/element-ui@2.2.1/lib/theme-chalk/index.css">
<!-- 引入組件庫 -->
<script src="/static/plugins/element-ui@2.2.1/lib/index.js"></script>
3.頁面內使用
1) 容器需要增加id屬性
2) 添加script標簽,創造vue組件
<script type="text/javascript">
var app = new Vue({
el: '#bm-sign',
data: {
form:{}
?
},
watch: {},
...
})
</script>
3)如需使用axios,直接引入即可:
<script src="/static/plugins/axios@0.18.0/dist/axios.min.js"></script>
4.其他script標簽使用vue組件data中的數據
app.form即可,如
for (var obj in app.form) {}?
轉載于:https://www.cnblogs.com/fancyLee/p/9669486.html
總結
以上是生活随笔為你收集整理的php项目中使用element.ui和vue的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【机器学习课程笔记(吴恩达)】1.3 监
- 下一篇: php获取用户的上5级用户