24 lines
566 B
Vue
24 lines
566 B
Vue
<template>
|
|
</template>
|
|
|
|
<script>
|
|
//此页面用于聊天的链接入口,请不要在这里添加内容,不要删除此页面,否则会导致编译失败
|
|
//这里虽然看不出任何于聊天有关的内容,但为了防止编译失败,请保留此页面
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: 'Hello'
|
|
}
|
|
},
|
|
onLoad() {
|
|
// 页面加载时执行
|
|
},
|
|
methods: {
|
|
// 方法定义
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* 样式定义 */
|
|
</style> |