@@ -7591,3 +7591,289 @@ Array [
75917591 "src/main.js",
75927592]
75937593` ;
7594+
7595+ exports [` Templates Vue InstantSearch with Vue 3 File content: .editorconfig 1` ] = `
7596+ "root = true
7597+
7598+ [*]
7599+ charset = utf-8
7600+ indent_style = space
7601+ indent_size = 2
7602+ end_of_line = lf
7603+ insert_final_newline = true
7604+ trim_trailing_whitespace = true"
7605+ ` ;
7606+
7607+ exports [` Templates Vue InstantSearch with Vue 3 File content: .gitignore 1` ] = `
7608+ "# Logs
7609+ logs
7610+ *.log
7611+ npm-debug.log*
7612+ yarn-debug.log*
7613+ yarn-error.log*
7614+ pnpm-debug.log*
7615+ lerna-debug.log*
7616+
7617+ node_modules
7618+ dist
7619+ dist-ssr
7620+ *.local
7621+
7622+ # Editor directories and files
7623+ .vscode
7624+ .idea
7625+ .DS_Store
7626+ *.suo
7627+ *.ntvs*
7628+ *.njsproj
7629+ *.sln
7630+ *.sw?"
7631+ ` ;
7632+
7633+ exports [` Templates Vue InstantSearch with Vue 3 File content: .prettierrc 1` ] = `
7634+ "{
7635+ \\" singleQuote\\ " : true ,
7636+ \\" proseWrap\\ " : \\" never\\ " ,
7637+ \\" trailingComma\\ " : \\" es5\\ "
7638+ } "
7639+ ` ;
7640+
7641+ exports [` Templates Vue InstantSearch with Vue 3 File content: README.md 1` ] = `
7642+ "# vue-instantsearch-app
7643+
7644+ _This project was generated with [create-instantsearch-app](https://github.com/algolia/create-instantsearch-app) by [Algolia](https://algolia.com)._
7645+
7646+ ## Get started
7647+
7648+ To run this project locally, install the dependencies and run the local server:
7649+
7650+ \`\`\` sh
7651+ npm install
7652+ npm run dev
7653+ \`\`\`
7654+
7655+ Alternatively, you may use [Yarn](https://http://yarnpkg.com/):
7656+
7657+ \`\`\` sh
7658+ yarn
7659+ yarn dev
7660+ \`\`\`
7661+
7662+ Open http://localhost:3000 to see your app."
7663+ ` ;
7664+
7665+ exports [` Templates Vue InstantSearch with Vue 3 File content: index.html 1` ] = `
7666+ "<!DOCTYPE html>
7667+ <html lang =\\"en\\">
7668+ <head>
7669+ <meta charset =\\"UTF-8\\" />
7670+ <meta http-equiv =\\"X-UA-Compatible\\" content =\\"ie=edge\\">
7671+ <meta name =\\"viewport\\" content =\\"width=device-width, initial-scale =1.0\\" />
7672+ <link rel =\\"icon\\" href =\\"/favicon.png\\" />
7673+ <!--
7674+ Do not use @7 in production, use a complete version like x.x.x, see website for latest version:
7675+ https://www.algolia.com/doc/guides/building-search-ui/installation/react/#load-the-style
7676+ -->
7677+ <link rel =\\"stylesheet\\" href =\\"https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/algolia-min.css\\">
7678+ <title>vue-instantsearch-app</title>
7679+ </head>
7680+ <body>
7681+ <div id =\\"app\\"></div>
7682+ <script type =\\"module\\" src =\\"/src/main.js\\"></script>
7683+ </body>
7684+ </html>"
7685+ `;
7686+
7687+ exports[`Templates Vue InstantSearch with Vue 3 File content: package.json 1`] = `
7688+ " {
7689+ \\" name\\": \\"vue-instantsearch-app\\",
7690+ \\"version\\": \\"1.0.0\\",
7691+ \\"private\\": true,
7692+ \\"scripts\\": {
7693+ \\" dev\\ " : \\" vite\\ " ,
7694+ \\" build\\ " : \\" vite build\\ " ,
7695+ \\" preview\\ " : \\" vite preview\\ "
7696+ } ,
7697+ \\"partialDependencies\\": {
7698+ \\" vue-instantsearch\\ " : \\" 4.3.3\\ "
7699+ }
7700+ }"
7701+ `;
7702+
7703+ exports[`Templates Vue InstantSearch with Vue 3 File content: src/App.vue 1`] = `
7704+ " <template>
7705+ <div>
7706+ <header class=\\" header\\">
7707+ <h1 class =\\"header-title\\">
7708+ <a href =\\"/\\">vue-instantsearch-app</a>
7709+ </h1>
7710+ <p class =\\"header-subtitle\\">
7711+ using
7712+ <a href =\\"https://github.com/algolia/vue-instantsearch\\">
7713+ Vue InstantSearch
7714+ </a>
7715+ </p>
7716+ </header>
7717+
7718+ <div class =\\"container\\">
7719+ <ais-instant-search :search-client=\\"searchClient\\" index-name =\\"indexName\\">
7720+ <div class =\\"search-panel\\">
7721+ <div class =\\"search-panel__filters\\">
7722+ <ais-dynamic-widgets>
7723+ <ais-refinement-list attribute =\\"facet1\\" />
7724+ <ais-refinement-list attribute =\\"facet2\\" />
7725+ </ais-dynamic-widgets>
7726+ </div>
7727+
7728+ <div class =\\"search-panel__results\\">
7729+ <div class =\\"searchbox\\">
7730+ <ais-search-box placeholder =\\"Search placeholder\\" />
7731+ </div>
7732+ <ais-hits >
7733+ <template v-slot:item=\\"{ item }\\">
7734+ <article>
7735+ <h1>
7736+ <ais-highlight :hit=\\"item\\" attribute =\\"attribute1\\" />
7737+ </h1 >
7738+ <p >
7739+ <ais-highlight :hit=\\"item\\" attribute =\\"attribute2\\" />
7740+ </p >
7741+ </article>
7742+ </template>
7743+ </ais-hits>
7744+
7745+ <div class =\\"pagination\\">
7746+ <ais-pagination />
7747+ </div>
7748+ </div>
7749+ </div>
7750+ </ais-instant-search>
7751+ </div>
7752+ </div>
7753+ </template>
7754+
7755+ <script >
7756+ import algoliasearch from 'algoliasearch/lite';
7757+
7758+ export default {
7759+ data () {
7760+ return {
7761+ searchClient: algoliasearch (' appId' , ' apiKey' ),
7762+ };
7763+ } ,
7764+ };
7765+ </script >
7766+
7767+ <style >
7768+ body,
7769+ h1 {
7770+ margin : 0 ;
7771+ padding : 0 ;
7772+ }
7773+
7774+ body {
7775+ font - family : - apple - system , BlinkMacSystemFont , ' Segoe UI' , Roboto , Helvetica ,
7776+ Arial , sans - serif , ' Apple Color Emoji' , ' Segoe UI Emoji' , ' Segoe UI Symbol' ;
7777+ }
7778+
7779+ h1 {
7780+ font - size : 1rem ;
7781+ }
7782+
7783+ em {
7784+ background : cyan ;
7785+ font - style : normal ;
7786+ }
7787+
7788+ .header {
7789+ display : flex ;
7790+ align - items : center ;
7791+ min - height : 50px ;
7792+ padding : 0.5rem 1rem ;
7793+ background - image : linear - gradient (to right , #4dba87 , #2f9088 );
7794+ color : #fff ;
7795+ margin - bottom : 1rem ;
7796+ }
7797+
7798+ .header a {
7799+ color : #fff ;
7800+ text - decoration : none ;
7801+ }
7802+
7803+ .header-title {
7804+ font - size : 1.2rem ;
7805+ font - weight : normal ;
7806+ }
7807+
7808+ .header-title::after {
7809+ content : ' ▸ ' ;
7810+ padding : 0 0.5rem ;
7811+ }
7812+
7813+ .header-subtitle {
7814+ font - size : 1.2rem ;
7815+ }
7816+
7817+ .container {
7818+ max - width : 1200px ;
7819+ margin : 0 auto ;
7820+ padding : 1rem ;
7821+ }
7822+
7823+ .search-panel {
7824+ display : flex ;
7825+ }
7826+
7827+ .search-panel__filters {
7828+ flex : 1 ;
7829+ }
7830+
7831+ .search-panel__results {
7832+ flex : 3 ;
7833+ }
7834+
7835+ .searchbox {
7836+ margin - bottom : 2rem ;
7837+ }
7838+
7839+ .pagination {
7840+ margin : 2rem auto ;
7841+ text - align : center ;
7842+ }
7843+ </style >"
7844+ ` ;
7845+
7846+ exports [` Templates Vue InstantSearch with Vue 3 File content: src/main.js 1` ] = `
7847+ "import { createApp } from 'vue';
7848+ import InstantSearch from 'vue-instantsearch/vue3/es';
7849+ import App from './App.vue';
7850+
7851+ const app = createApp(App);
7852+ app.use(InstantSearch);
7853+ app.mount('#app');"
7854+ ` ;
7855+
7856+ exports [` Templates Vue InstantSearch with Vue 3 File content: vite.config.js 1` ] = `
7857+ "import { defineConfig } from 'vite'
7858+ import vue from '@vitejs/plugin-vue'
7859+
7860+ // https://vitejs.dev/config/
7861+ export default defineConfig({
7862+ plugins : [vue ()]
7863+ } )"
7864+ ` ;
7865+
7866+ exports [` Templates Vue InstantSearch with Vue 3 Folder structure: contains the right files 1` ] = `
7867+ Array [
7868+ ".editorconfig",
7869+ ".gitignore",
7870+ ".prettierrc",
7871+ "README.md",
7872+ "index.html",
7873+ "package.json",
7874+ "public/favicon.png",
7875+ "src/App.vue",
7876+ "src/main.js",
7877+ "vite.config.js",
7878+ ]
7879+ ` ;
0 commit comments