1.2.0 • Published 2 years ago

scheduflow v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

npm Common function 생성

npm init

JS파일에 Common function 추가

npm publish

npm Common function use

npm install scheduflow

use example

  • App.vue
<script setup>
import { fetchData, fetchDataMembers } from 'scheduflow'

const jsonData = ref(null)

onMounted(async () => {
  try {
    jsonData.value = await fetchData()
  } catch (error) {
    console.error('Error fetching data:', error)
  }
})
</script>

<template>
    <component-name :jsonData="jsonData" />
</template>
  • component.vue
<script setup>
const props = defineProps({
  jsonData: Object
})
</script>
1.2.0

2 years ago

1.1.0

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago