18 lines
213 B
Vue
18 lines
213 B
Vue
<template>
|
|
<view class="container"> </view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: ''
|
|
}
|
|
},
|
|
onLoad() {},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|