谢亚昕 5 months ago
commit
fd615943bb
  1. 2
      .gitignore
  2. 12
      index.html
  3. 32
      package.json
  4. 9
      play/App.vue
  5. 5
      play/main.ts
  6. 2300
      pnpm-lock.yaml
  7. 16
      somebuild.config.mts
  8. 8
      src/index.ts
  9. 4
      src/src/index.ts
  10. 3
      src/src/type.d.ts
  11. 15
      src/src/vx-tree.vue
  12. 10
      src/utils.ts
  13. 12
      tsconfig.json

2
.gitignore

@ -0,0 +1,2 @@
node_modules
dist

12
index.html

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/play/main.ts"></script>
</body>
</html>

32
package.json

@ -0,0 +1,32 @@
{
"name": "vx-tree",
"version": "1.0.0",
"description": "",
"main": "dist/vx-tree.js",
"exports": {
".": {
"import": "./dist/vx-tree.mjs",
"require": "./dist/vx-tree.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "somebuild dev",
"watch": "somebuild build --watch",
"watch:debug": "somebuild build --watch --debug",
"build": "somebuild build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@somebuild/build-component-vue3": "^1.0.0",
"somebuild": "^1.0.0",
"vue": "^3.5.12"
},
"peerDependencies": {
"vue": ">3"
}
}

9
play/App.vue

@ -0,0 +1,9 @@
<template>
<div>
<VxTree aaa="2131"></VxTree>
</div>
</template>
<script setup lang="ts">
import VxTree from "vx-tree";
</script>

5
play/main.ts

@ -0,0 +1,5 @@
import VxTree from "vx-tree";
import { createApp } from "vue";
import App from "./App.vue";
createApp(App).use(VxTree).mount("#app");

2300
pnpm-lock.yaml

File diff suppressed because it is too large

16
somebuild.config.mts

@ -0,0 +1,16 @@
import { defineRootConfig } from 'somebuild'
export default defineRootConfig({
mode: "component-vue3",
"component-vue3": {
name: "VxTree",
entry: 'src/index.ts',
dtsEntryRoot: 'src',
outDir: "dist",
config: {
alias: {
"vx-tree": "./src"
}
}
}
})

8
src/index.ts

@ -0,0 +1,8 @@
import type { App } from "vue";
import _VxTree from "./src";
import { withInstall } from "./utils";
const VxTree = withInstall(_VxTree, "VxTree");
export { VxTree };
export default VxTree;

4
src/src/index.ts

@ -0,0 +1,4 @@
import VxTree from "./vx-tree.vue";
export default VxTree;
export { VxTree };

3
src/src/type.d.ts

@ -0,0 +1,3 @@
export interface IProps {
aaa?: string;
}

15
src/src/vx-tree.vue

@ -0,0 +1,15 @@
<template>
<div>组件模板开发</div>
</template>
<script lang="ts" setup>
import type { IProps } from "./type";
defineOptions({
name: "VxTree",
});
defineProps<IProps>();
function handleClick() {}
</script>

10
src/utils.ts

@ -0,0 +1,10 @@
import type { Plugin, DefineComponent } from "vue";
export type SFCWithInstall<T> = T & Plugin;
export const withInstall = <T>(main: T, name: string) => {
(main as SFCWithInstall<T>).install = (app): void => {
app.component((main as DefineComponent).name || name, main);
};
return main as SFCWithInstall<T>;
};

12
tsconfig.json

@ -0,0 +1,12 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"vx-tree/*": ["src/*"],
"vx-tree": ["src/index.ts"]
}
},
"include": ["play", "src"]
}
Loading…
Cancel
Save