\n\n\n\n\n\n\n\n","const images = require.context('./images', true, /\\.png$/);\n\nconst parts = {\n heads: [\n {\n id: 1,\n description:\n 'A robot head with an unusually large eye and teloscpic neck -- excellent for exploring high spaces.',\n title: 'Large Cyclops',\n src: images('./head-big-eye.png'),\n type: 'heads',\n cost: 1225.5,\n },\n {\n id: 2,\n description: 'A friendly robot head with two eyes and a smile -- great for domestic use.',\n title: 'Friendly Bot',\n src: images('./head-friendly.png'),\n cost: 945.0,\n type: 'heads',\n onSale: true,\n },\n {\n id: 3,\n description:\n 'A large three-eyed head with a shredder for a mouth -- great for crushing light medals or shredding documents.',\n title: 'Shredder',\n src: images('./head-shredder.png'),\n type: 'heads',\n cost: 1275.5,\n },\n {\n id: 4,\n description:\n 'A simple single-eyed head -- simple and inexpensive.',\n title: 'Small Cyclops',\n src: images('./head-single-eye.png'),\n type: 'heads',\n cost: 750.0,\n },\n {\n id: 5,\n description:\n 'A robot head with three oscillating eyes -- excellent for surveillance.',\n title: 'Surveillance Bot',\n src: images('./head-surveillance.png'),\n type: 'heads',\n cost: 1255.5,\n },\n ],\n arms: [\n {\n id: 1,\n description: 'An articulated arm with a claw -- great for reaching around corners or working in tight spaces.',\n title: 'Articulated',\n src: images('./arm-articulated-claw.png'),\n type: 'arms',\n cost: 275,\n },\n {\n id: 2,\n description: 'An arm with two independent claws -- great when you need an extra hand. Need four hands? Equip your bot with two of these arms.',\n title: 'Two Clawed',\n src: images('./arm-dual-claw.png'),\n type: 'arms',\n cost: 285,\n },\n {\n id: 3,\n description: 'A telescoping arm with a grabber.',\n title: 'Grabber',\n src: images('./arm-grabber.png'),\n type: 'arms',\n cost: 205.5,\n },\n {\n id: 4,\n description: 'An arm with a propeller -- good for propulsion or as a cooling fan.',\n title: 'Propeller',\n src: images('./arm-propeller.png'),\n type: 'arms',\n cost: 230,\n onSale: true,\n },\n {\n id: 5,\n description: 'A short and stubby arm with a claw -- simple, but cheap.',\n title: 'Stubby Claw',\n src: images('./arm-stubby-claw.png'),\n type: 'arms',\n cost: 125,\n },\n ],\n torsos: [\n {\n id: 1,\n description: 'A torso that can bend slightly at the waist and equiped with a heat guage.',\n title: 'Flexible Gauged',\n src: images('./torso-flexible-gauged.png'),\n type: 'torsos',\n cost: 1575,\n },\n {\n id: 2,\n description: 'A less flexible torso with a battery gauge.',\n title: 'Gauged',\n src: images('./torso-gauged.png'),\n type: 'torsos',\n cost: 1385,\n },\n {\n id: 3,\n description: 'A simple torso with a pouch for carrying items.',\n title: 'Gauged',\n src: images('./torso-pouch.png'),\n type: 'torsos',\n cost: 785,\n onSale: true,\n },\n ],\n bases: [\n {\n id: 1,\n description: 'A two wheeled base with an accelerometer for stability.',\n title: 'Double Wheeled',\n src: images('./base-double-wheel.png'),\n type: 'bases',\n cost: 895,\n },\n {\n id: 2,\n description: 'A rocket base capable of high speed, controlled flight.',\n title: 'Rocket',\n src: images('./base-rocket.png'),\n type: 'bases',\n cost: 1520.5,\n },\n {\n id: 3,\n description: 'A single-wheeled base with an accelerometer capable of higher speeds and navigating rougher terrain than the two-wheeled variety.',\n title: 'Single Wheeled',\n src: images('./base-single-wheel.png'),\n type: 'bases',\n cost: 1190.5,\n },\n {\n id: 4,\n description: 'A spring base - great for reaching high places.',\n title: 'Spring',\n src: images('./base-spring.png'),\n type: 'bases',\n cost: 1190.5,\n },\n {\n id: 5,\n description: 'An inexpensive three-wheeled base. only capable of slow speeds and can only function on smooth surfaces.',\n title: 'Triple Wheeled',\n src: images('./base-triple-wheel.png'),\n type: 'bases',\n cost: 700.5,\n },\n ],\n};\nexport default parts;\n","export default {\n created() {\n console.log('component created');\n },\n};\n","\n