issues Search Results · repo:tjk/vue-o2c language:TypeScript
Filter by
11 results
(80 ms)11 results
intjk/vue-o2c (press backspace or delete to remove)Hello, I am not familiar with this, could you tell me how to switch from vue2 to vue3 without typescript,
Morii120
- 1
- Opened on May 7, 2024
- #12
I am getting error
vue-o2c@1.0.0 start /home/ my-project-path /vue-o2c
node index.js
/home/ my-project-path /vue-o2c/node_modules/.pnpm/vue-o2c@0.1.21_web-tree-sitter@0.20.8/node_modules/vue-o2c/dist/index.js:44 ...
nilskuhn
- 2
- Opened on Jun 15, 2023
- #11
if OptionsApi has:
const prop0 = someProp0 Value ;
export default {
components: {...},
data() {
return {
someVar: someInit({
prop1: prop1 ,
prop2: `${prop0}/path`,
...
GoodDayForSurf
- 2
- Opened on Jun 9, 2023
- #10
import Button from primevue/button ;
components: {
IPButton: Button
},
should (ideally) transform to
import { default as IPButton } from primevue/button ;
but maybe more likely
import ...
tjk
- Opened on May 15, 2023
- #9
I tried converting the code for the Inplace component from Primevue on the online converter but it apparently didn t
like it. For it to work, I had to comment three areas of the code like so:
template ...
ZiadJ
- 4
- Opened on Apr 3, 2023
- #8
First of all thanks a lot for making this and for continuing to improve it! I ve been using it and it s been very
helpful and time saving!
I really like your GUI demo and would like to run it locally ...
vesper8
- 1
- Opened on Feb 24, 2023
- #7
Maybe filters could be replaced with computed
reference: Vue 3 Migration Guide | filters
leon-fong
- 2
- Opened on Nov 14, 2022
- #5
const hello = hi
export default {
props: {
hello: String,
},
}
should become
script lang= ts
const hello = hi
/script
script setup lang= ts
defineProps {
props?: string
} ()
/script ...
tjk
- 1
- Opened on Nov 2, 2022
- #4
Input:
script
export default {
props: [ id ]
}
/script
Expected output:
script setup lang= ts
defineProps {
id ?: any
} ()
/script
simlevesque
- Opened on Oct 27, 2022
- #2

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.