The Best WordPress Alternative for Nuxt

Meet the Nuxt WordPress alternative that gives you all the features you’re used to, with none of the headaches. Smooth, simple, and tasty content integration - that’s Butter.

Posted on August 1, 2023

Intuitive user interface

Our familiar dashboards melt into your existing workflow with no training required. Build better with ButterCMS.

Upgrade your SEO

With Butter, your marketing team keeps control over on page SEO ranking factors, and your site will load faster than ever.

A truly zero-maintenance solution

With ButterCMS, you can forget about security patches, software updates, plugin conflicts, and performance issues.

A familiar editing experience you’ll love

Butter provides a simple and smooth interface for editing, scheduling, and publishing your content. You get all of the dashboards and fields you’re used to, with none of the clutter.

If you’ve used WordPress or another CMS you’ll be able to pick up Butter instantly, with no additional training required.

Play video

See how Butter enables your marketing team to take control of their content across every channel.

Awesome SEO with no plugins required

Butter gives you control over meta tags and on-page SEO ranking factors, without getting a developer involved.

Modern SEO is all about page performance and user experience, and it’s no secret that older CMSs have trouble keeping up. 

Our Nuxt WordPress alternative is built on a modern API. Your content is served over a globally distributed CDN, making your site blazing fast.

Deploy our Nuxt.js starter in 30 seconds!

Or follow the below commands to clone a copy of the repo from github, install dependencies, set your free Butter token, and run your local server on localhost:8000/.

$ git clone clone https://github.com/ButterCMS/nuxtjs-starter-buttercms
$ cd nuxtjs-starter-buttercms
$ npm install
$ echo 'NUXT_ENV_BUTTER_API_TOKEN=your_free_api_token_here' >> .env
$ npm run dev

Say “goodbye” to upgrades, conflicts, and security threats

Managing a collection of themes, plugins, and add-ons is tricky, time-consuming, and expensive.

Butter is a truly zero-maintenance solution. After your development team completes the initial configuration, their work is done. There are no versions, no security patches, and no forced upgrades. Never.

Eliminate your reliance on deprecated plugins and templates

Deprecated plugins and templates force you to rebuild content and entire pages that aren't on your roadmap, costing you time and money. With ButterCMS, your designers get full creative control over branding and UX, and your marketing team only rebuilds content when they want to.

Build your marketing stack using only the best of breed tools, alongside ButterCMS as your best of breed CMS.

Real support from real people

Consistent customer happiness is our #1 priority, and it shows in our customer reviews. We work with you from day 1 of your free trial to get you up and running quickly so your marketers can do their jobs efficiently, and your developers can get back to more important tasks.

When was the last time you spoke with a WordPress support team member in real-time?

Industry-Leading Support from Real People

When was the last time you spoke with a WordPress support team member in realtime?

headshot of Shane Whi

ButterCMS is easy to use, and their customer service is great! The few times I wasn’t able to figure something out, their support guided me through the entire process. Shane White Founder HelloRender

Built to make content marketing easy

ButterCMS is the best WordPress alternative for Nuxt for a simple reason: Nuxt developers can build solutions that marketing teams love. Our API allows your content gurus to quickly spin up high-converting blog posts, dynamic landing pages, SEO pages, product marketing pages, and more, all using simple drag-and-drop functionality.

  • SEO landing pages
  • Localized and personalized content
  • Customer case studies
  • Company news & updates
  • Events & webinar pages
  • And more...
G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award

"Support is awesome"

headshot of Mike Ting

I love having control of my website content without having to use WordPress. The language option makes localization super easy. Their support is awesome. I made a complicated request and it was taken care of within 24 hours. Mike Tingey Founder & CTO Zennoa

Fast integration with any Nuxt app

Our mission was to make it easy to integrate Butter with your existing Nuxt app in minutes. It’s so simple! To demonstrate, here’s a mini tutorial to give you a feel for the process of adding marketing pages to your Nuxt app.

Of course, you can also use our Collections to do advanced content modeling. For a full integration guide, check out our Official Guide for the ButterCMS Nuxt API client.

Play video

See how easily you can integrate the ButterCMS Pages API with your Nuxt app.

ButterCMS Saves You Development Time

Most customers get our Nuxt CMS up and running in less than an hour. Try it yourself!

headshot of Zoran Lorkov

Before ButterCMS, our dev team spent a lot of time in WordPress creating pages, adjusting fields, and pulling data through the APIs. What I really like about ButterCMS is that our marketing team managed to learn ButterCMS really quickly, and now they’re able to create pages and collections on their own. It saves a lot of time and allows our developers to focus on actual development. Zoran Lorkovic Vice President, Engineering Huckletree

How to integrate ButterCMS into your Nuxt application

Just follow the simple steps below to complete the integration and begin creating pages with Butter. Be sure to check out our full guide to creating pages using the ButterCMS Nuxt API.

First, you would set up a new Customer Case Study page type in Butter and create a page. With your page defined, the ButterCMS API will return it in JSON format like this:

{
    "data": {
        "slug": "acme-co",
        "fields": {
            "facebook_open_graph_title": "Acme Co loves ButterCMS",
            "seo_title": "Acme Co Customer Case Study",
            "headline": "Acme Co saved 200% on Anvil costs with ButterCMS",
            "testimonial": "<p>We've been able to make anvils faster than ever before! - <em>Chief Anvil Maker</em></p>\r\n<p><img src=\"https://cdn.buttercms.com/NiA3IIP3Ssurz5eNJ15a\" alt=\"\" caption=\"false\" width=\"249\" height=\"249\" /></p>",
            "customer_logo": "https://cdn.buttercms.com/c8oSTGcwQDC5I58km5WV",
        }
    }
}

To integrate this into your app, simply make a call to ButterCMS APIs using the ButterCMS service. Place this call in the created lifecycle method in pages/index.vue:

import { butter } from '~/plugins/buttercms'
export default {
  name: 'customer-page',
  data() {
    return {
      page: {
        fields: {}
      }
    }
  },
  methods: {
    getPage() {
      butter.page
        .retrieve('*', 'homepage')
        .then((res) => {
          console.log(res.data)
          console.log(res.data.data)
          this.page = res.data.data
        })
        .catch((res) => {
          console.log(res)
        })
    }
  },
  created() {
    this.getPage()
  }
}

Display the result:

<template>
  <div id="customer-page">
    <figure>
      <img :src="page.fields.hero_image" />
    </figure>
    <h1>{{ page.fields.headline }}</h1>
    <button>{{ page.fields.call_to_action }}</button>

    <h3>Customers Love Us!</h3>
    
    <img
      v-for="logo in page.fields.customer_logos"
      :key="logo.index"
      :src="logo.logo_image"
    />
  </div>
</template>

Get all page content of specific type. For instance, customers for the case study in pages/customers/index.vue:

import { butter } from '~/plugins/buttercms'
export default {
  name: 'customers-home',
  data() {
    return {
      page_title: 'Customers',
      // Create array to hold the pages from ButterCMS API
      pages: []
    }
  },
  methods: {
    // Get List of Customer Pages
    getPages() {
      butter.page.list('case_study').then((res) => {
        // console.log(res.data.data) // Check the results in the console
        this.pages = res.data.data
      })
    }
  },
  created() {
    // Fire on page creation
    this.getPages()
  }
}

Display the result:

<template>
  <div id="customers-home">
    <h1>{{ page_title }}</h1>
    <div v-for="(page, index) in pages" :key="index">
      <router-link :to="'/customers/' + page.slug">
        <div>
          <img class="customer-image" :src="page.fields.customer_logo" alt="" />
          <h2>{{ page.fields.headline }}</h2>
        </div>
      </router-link>
    </div>
  </div>
</template>

Viewing specific page of a specific type could be done as shown below: customer component that displays the details of the customer in pages/customers/_slug.vue.

import { butter } from '~/plugins/buttercms'
export default {
  name: 'customer-page',
  data() {
    return {
      slug: this.$route.params.slug,
      page: {
        slug: '',
        fields: {}
      }
    }
  },
  methods: {
    getPage() {
      butter.page
        .retrieve('case_study', this.slug)
        .then((res) => {
          // console.log(res.data.data)
          this.page = res.data.data
        })
        .catch((res) => {
          console.log(res)
        })
    }
  },
  created() {
    this.getPage()
  }
}

Display the result:

<template>
  <div id="customer-page">
    <figure>
      <img class="customer-image" :src="page.fields.customer_logo" />
    </figure>
    <h1>{{ page.fields.headline }}</h1>
    <h3>Testimonials</h3>
    <div v-html="page.fields.testimonial"></div>
    <div v-html="page.fields.body"></div>
  </div>
</template>

That's it! If you browse to your homepage you'll see your homepage populated with the content you created in Butter.

Get Started for Free

Try Butter free for 14 days

See for yourself what makes Butter the best Nuxt WordPress alternative. Click the button below to sign up for your free 14-day trial.