<!DOCTYPE html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<title>消息列表</title>
|
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
|
<script src="http://cdn.yeshitv.com/js/vue.min.js"></script>
|
<script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
|
<script src="js/msg_list.js"></script>
|
<script src="js/qwebchannel.js"></script>
|
<script src="js/kpl.js"></script>
|
<script src="js/http.js"></script>
|
<style>
|
|
body {
|
max-width: 1060px;
|
font-size: 13px;
|
color: #000000;
|
background: #FFFFFF;
|
font-family: Microsfot YaHei,微软雅黑;
|
}
|
.msg{
|
word-wrap: break-word;
|
}
|
</style>
|
</head>
|
<body>
|
<div id="app">
|
|
<div class="container">
|
<div class="msg" v-for="(item,index) in msg_list">
|
{{item}}
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
</html>
|