// pages.json
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
}
],
"subPackages": [
{
"root": "sub-packages/test",
"pages": [
{
"path": "pages/index/index"
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
}
// sub-packages/test/pages/index/index
<script setup lang="ts">
import { onMounted, ref } from "vue";
import { kmCalculate } from "@weway/utils";
const title = ref("Hello");
onMounted(() => {
console.log(kmCalculate(100, 100, "*"));
});
</script>
<template>
<view class="content">
<view class="text-area">
<text class="title">{{ title }}</text>
</view>
</view>
</template>
<style scoped></style>