123456789101112131415161718192021222324252627282930 |
- <!-- 开始广播 -->
- <template>
- <view id="broadcast">
- 123123
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="stylus" scoped>
- #broadcast{
- height:100%;
- display flex
- }
- </style>
|