uni-app 的基础格式

uni-app 的基础格式,方便复制粘贴

<template>
    <view></view>
</template>

<script>
// 引入公共部分
import { graceRichText } from '@/static/js/rechText.js';
import toubu from '../../components/toubu/toubu.vue';
export default {
    components: {
        toubu
    },
    data() {
        return {
            list: ''
        };
    },
    created() {},
    onShow() {},
    onLoad(options) {},
    methods: {}
};
</script>
<!-- scoped (防止本页的css污染全局)  lang="less" (使用less)-->
<style scoped lang="less">
@import url('../../static/css/public.less');
</style>
原文地址:https://www.cnblogs.com/xiaoyaolang/p/13644720.html