Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

151
Views
using vue component but appear blank

is this the right way to include a vue component?

new Vue({
  render: (h) => h(App)
})
  .component("v-select", vSelect)
  .$mount("#app");

I tried to use vue-select but seeing a blank screen https://codesandbox.io/s/affectionate-goodall-judt9?file=/src/main.js:164-254

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

To register vue component, use this way

import Vue from "vue";
import App from "./App.vue";

import vSelect from "vue-select";
import "vue-select/dist/vue-select.css";

Vue.config.productionTip = false;

//Here register v-select component
Vue.component("v-select", vSelect);

new Vue({
  render: (h) => h(App)
}).$mount("#app");
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!