#
whycq
2024-03-28 4775cc85f057cf091235b7c26c4037a8eca06391
#
2个文件已添加
1个文件已修改
42 ■■■■■ 已修改文件
pages.json 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/test/test01.vue 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
uni_modules/mtview-ui/components/mt-card/mt-card.vue 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages.json
@@ -1,7 +1,15 @@
{
    "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        
        {
            "path" : "pages/test/test01",
            "style" :
            {
                "navigationBarTitleText": "测试1",
                "enablePullDownRefresh": false
            }
        
        },
        {
            "path": "pages/LoginDemo/LoginDemo",
            "style": {
pages/test/test01.vue
New file
@@ -0,0 +1,22 @@
<template>
    <view>
        <mt-card></mt-card>
    </view>
</template>
<script>
    export default {
        data() {
            return {
            }
        },
        methods: {
        }
    }
</script>
<style>
</style>
uni_modules/mtview-ui/components/mt-card/mt-card.vue
New file
@@ -0,0 +1,12 @@
<template>
    <view>111</view>
</template>
<script>
    export default {
         name: "mt-card",
    }
</script>
<style scoped>
</style>