New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vue hooks and examples of usage #19
Conversation
f91054d
to
3efe7c1
Compare
3efe7c1
to
47a819d
Compare
52dc559
to
5b28f02
Compare
examples/vue-app/src/main.ts
Outdated
@@ -0,0 +1,8 @@ | |||
import { createApp } from 'vue' | |||
import './style.css' | |||
import App from './app.vue' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import App from './app.vue'
should import App from './App.vue'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be good now, as well with the styles
The current vue-app has a white text color on a white background for the input fields which makes it difficult to read |
Closes SNS-34