Skip to content

Commit

Permalink
attempt implementing autocomplete with Vue.use
Browse files Browse the repository at this point in the history
just seeing if this works
  • Loading branch information
matthewdylan committed Nov 17, 2023
1 parent d949d2e commit 196e301
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/static/js/src/entry/account/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
numeric as numericRule,
} from 'vee-validate/dist/rules';
import VueClipboard from 'vue-clipboard2';
import VueGoogleAutocomplete from 'vue-google-autocomplete';
import axios from 'axios';
import { Vue as VueIntegration } from '@sentry/integrations';
import { init as initSentry } from '@sentry/browser';
Expand Down Expand Up @@ -90,6 +91,7 @@ Vue.mixin({
Vue.use(VModal);
Vue.use(VueRouter);
Vue.use(VueClipboard);
Vue.use(VueGoogleAutocomplete);

Vue.component('UserSiteFooter', UserSiteFooter);
Vue.component('BasicSiteFooter', BasicSiteFooter);
Expand Down

0 comments on commit 196e301

Please sign in to comment.