qcf 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,6 +7,7 @@ import { reactive, ref } from 'vue';
7
7
  console.log('1-开始创建组件-setup');
8
8
  const data = reactive({});
9
9
  const name = ref();
10
+ console.log(data, name);
10
11
  </script>
11
12
  <style scoped lang="less">
12
13
  @import './{{kebabCase name}}.less';
@@ -7,6 +7,7 @@ import { reactive, ref } from 'vue';
7
7
  console.log('1-开始创建组件-setup');
8
8
  const data = reactive({});
9
9
  const name = ref();
10
+ console.log(data, name);
10
11
  </script>
11
12
  <style scoped lang="less">
12
13
  @import './{{kebabCase name}}.less';
@@ -8,6 +8,7 @@ import { reactive, ref } from 'vue';
8
8
  console.log('1-开始创建组件-setup');
9
9
  const data = reactive({});
10
10
  const name = ref();
11
+ console.log(data, name);
11
12
  </script>
12
13
  <style scoped lang="less">
13
14
  @import './index.less';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcf",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "quick create file(QCF) is a package for quickly creating templates for front-end projects",
5
5
  "author": "xunzou",
6
6
  "type": "module",